橘子同学 发表于 2021-11-30 21:17:45

Python的numpy怎么用?

javascript:;,不知道大家能不能看到我的图片。结果报错,显示没有模块名为numpy

suchocolate 发表于 2021-11-30 21:26:33

得先安装numpy包,python环境变量设置好了的话,在CMD下运行如下命令安装:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy
环境变量没有设置好的话,参考这个:https://www.runoob.com/python3/python3-install.html

橘子同学 发表于 2021-11-30 21:50:37

谢谢你!但是还有一个问题,在cmd里面安装的时候这样显示
File "<stdin>", line 1
    pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy
      ^
SyntaxError: invalid syntax
>>>
谢谢你的回复{:10_297:}

橘子同学 发表于 2021-11-30 21:51:36

suchocolate 发表于 2021-11-30 21:26
得先安装numpy包,python环境变量设置好了的话,在CMD下运行如下命令安装:

环境变量没有设置好的话,参 ...

谢谢你!但是还有一个问题,在cmd里面安装的时候这样显示
File "<stdin>", line 1
    pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy
      ^
SyntaxError: invalid syntax
>>>
谢谢你的回复{:10_297:}

suchocolate 发表于 2021-11-30 22:09:16

橘子同学 发表于 2021-11-30 21:51
谢谢你!但是还有一个问题,在cmd里面安装的时候这样显示
File "", line 1
    pip install -i https:/ ...

你这个不是cmd,cmd是指win 自带的 命令行终端,win+r,输入cmd启动。
你这个是python idle shell,要分清楚。

橘子同学 发表于 2021-12-1 09:02:24

本帖最后由 橘子同学 于 2021-12-1 09:05 编辑

suchocolate 发表于 2021-11-30 22:09
你这个不是cmd,cmd是指win 自带的 命令行终端,win+r,输入cmd启动。
你这个是python idle shell,要分 ...

cmd也显示了非法语法,感谢你耐心的帮助{:10_281:}

suchocolate 发表于 2021-12-1 10:29:17

橘子同学 发表于 2021-12-1 09:02
cmd也显示了非法语法,感谢你耐心的帮助

这个还是python shell,不是cmd。
cmd启动方法:
1)按WIN+R键
2)输入cmd
3)回车

橘子同学 发表于 2021-12-1 10:45:08

本帖最后由 橘子同学 于 2021-12-1 10:57 编辑

suchocolate 发表于 2021-12-1 10:29
这个还是python shell,不是cmd。
cmd启动方法:
1)按WIN+R键


谢谢大佬,按照你的方法安装成功啦,但是python里面运行好像还有点问题{:10_275:} {:10_266:} {:10_254:}
Python 3.9.0a4 (tags/v3.9.0a4:6e02691, Feb 25 2020, 23:23:54) on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>> import numpy
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
    import numpy
File "E:\Python3.9\lib\site-packages\numpy\__init__.py", line 161, in <module>
    from . import random
File "E:\Python3.9\lib\site-packages\numpy\random\__init__.py", line 180, in <module>
    from . import _pickle
File "E:\Python3.9\lib\site-packages\numpy\random\_pickle.py", line 1, in <module>
    from .mtrand import RandomState
ImportError: DLL load failed while importing mtrand: 找不到指定的程序。

suchocolate 发表于 2021-12-1 10:53:47

橘子同学 发表于 2021-12-1 10:45
真是太感谢你了!!好像还有点版本问题

那个是版本warning,不用在意,pip低一点不影响使用。
numpy现在已经装好了,可以在py脚本里用numpy模块了。
页: [1]
查看完整版本: Python的numpy怎么用?