omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. QuickPiz

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Best 0
    • Controversial 0
    • Groups 0

    QuickPiz

    @QuickPiz

    0
    Reputation
    322
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    QuickPiz Unfollow Follow

    Latest posts made by QuickPiz

    • RE: Bug report pythonista v3.2 (matplotlib, python2)

      Thanks for the reply. Unfortunately, I have a lot of preexisting python2 code and switching to 3 is not an option in the short run. I will definitely consider the upgrade and check out pythonista's 2to3 as soon as I can afford this.

      posted in Pythonista
      QuickPiz
      QuickPiz
    • Bug report pythonista v3.2 (matplotlib, python2)

      Hi all

      I have just upgraded pythonista to v3.2.

      Unfortunately, this version broke pretty much all my scripts. :(

      When I run something with matplotlib and python 2, pythonista crashes badly.

      Even the simple example below crashes pythonista (if I use python 2) when it reaches the 'show' method. Python3 seems to work with this example (but I have way too much code to migrate to Python3 in the short run).

      I need to find a way to downgrade pythonista to the previous version. Oh well.

      Anyway, keep up the good work. This is an amazing IDE for iOS.

      import numpy as np
      import matplotlib.pyplot as plt
      
      if __name__=='__main__':
          x,y,c = zip(*np.random.rand(30,3)*4-2)
          plt.plot(x,y,label="plop")
          plt.show()
      
      posted in Pythonista
      QuickPiz
      QuickPiz