在安装pythonxy之后,我收到了一个错误,据我所知,pythonxy包括numpy和scipy,但是我不能在命令提示符下导入这些功能。我该如何处理这个问题?这是我的错误信息,感谢stackoverflow社区。
C:\WINDOWS\system32>python
Python 3.4.3 (v3.4.3:9b73f1c3e601, Feb 24 2015, 22:43:06) [MSC v.1600 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'numpy'
>>> import scipy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'scipy'发布于 2015-11-13 04:43:47
Python(x,y)安装Python 2.7。您似乎已经启动了Python3。How to run different python versions in cmd中的讨论可能会有所帮助。
https://stackoverflow.com/questions/33003218
复制相似问题