Guest User

Untitled

a guest
Apr 24th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. import matplotlib.pyplot as plt
  2.  
  3. x = [0, 1, 2, 3, 4]
  4. y = [0, 1, 4, 9, 16]
  5.  
  6. plt.plot(x, y)
  7. plt.show()
  8.  
  9. pyinstaller -F plottest.py
  10.  
  11. ...
  12. File "C:Anaconda3libast.py", line 245, in visit
  13. return visitor(node)
  14. File "C:Anaconda3libast.py", line 255, in generic_visit
  15. self.visit(value)
  16. File "C:Anaconda3libast.py", line 245, in visit
  17. return visitor(node)
  18. File "C:Anaconda3libast.py", line 249, in generic_visit
  19. for field, value in iter_fields(node):
  20. RuntimeError: maximum recursion depth exceeded
  21.  
  22. pyi-makespec options name.py
  23.  
  24. import sys
  25. sys.setrecursionlimit(5000) # or more
  26.  
  27. pyi options name.spec
Add Comment
Please, Sign In to add comment