http://pip.readthedocs.org/en/stable/installing/怎么安装
http://pip.readthedocs.org/en/stable/installing/怎么安装,命令python get-pip.py提示错误
http://pip.readthedocs.org/en/stable/installing/怎么安装,命令python get-pip.py提示错误
2016-09-30
>>> import numpy Traceback (most recent call last): File "<pyshell#33>", line 1, in <module> import numpy ModuleNotFoundError: No module named 'numpy' >>> pip3 install numpy SyntaxError: invalid syntax >>> python3 get-pip.py SyntaxError: invalid syntax >>> numpy.array([1,2,3]) Traceback (most recent call last): File "<pyshell#36>", line 1, in <module> numpy.array([1,2,3]) NameError: name 'numpy' is not defined >>> import numpy Traceback (most recent call last): File "<pyshell#37>", line 1, in <module> import numpy ModuleNotFoundError: No module named 'numpy' 这怎么解啊?装的3.6.4
举报