Advertisement
pleabargain

scipy works for python2.7 but not for 3.2

Jun 3rd, 2013
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.49 KB | None | 0 0
  1. dennis@64maya ~ $ python3.2
  2. Python 3.2.3 (default, Oct 19 2012, 20:10:41)
  3. [GCC 4.6.3] on linux2
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> import scipy
  6. Traceback (most recent call last):
  7.   File "<stdin>", line 1, in <module>
  8. ImportError: No module named scipy
  9. >>>
  10. dennis@64maya ~ $ python2.7
  11. Python 2.7.3 (default, Aug  1 2012, 05:14:39)
  12. [GCC 4.6.3] on linux2
  13. Type "help", "copyright", "credits" or "license" for more information.
  14. >>> import scipy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement