温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

python 3.9 Numpy scipy和matlabplot如何在windows环境中安装

发布时间:2020-11-30 15:33:29 来源:亿速云 阅读:276 作者:Leah 栏目:开发技术

python 3.9 Numpy scipy和matlabplot如何在windows环境中安装?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。

1 首先打开cmd

win+r

2 pip安装

pip3 install --user numpy scipy matplotlib

–user 选项可以设置只安装在当前的用户下,而不是写入到系统目录。默认情况使用国外线路,国外太慢,我们使用清华的镜像就可以:

pip3 install numpy scipy matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple

如何网络不好,我们可以挨个单独安装

pip3 install numpy s -i https://pypi.tuna.tsinghua.edu.cn/simple

pip3 install scipy -i https://pypi.tuna.tsinghua.edu.cn/simple

pip3 install matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple

3 安装matlabplot时遇到错误:

Using legacy 'setup.py install' for matplotlib, since package 'wheel' is not installed.

Installing collected packages: matplotlib

    Running setup.py install for matplotlib ... error

    ERROR: Command errored out with exit status 1:

python 3.9 Numpy scipy和matlabplot如何在windows环境中安装

查看自己的python版本:

Python 3.9.0 (tags/v3.9.0:9cf6752, Oct 5 2020, 15:34:40) [MSC v.1927 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license()" for more information.

python 3.9 Numpy scipy和matlabplot如何在windows环境中安装

我的python是3.9 AMD64

在https://www.lfd.uci.edu/~gohlke/pythonlibs/网站找到worldcould
python 3.9 Numpy scipy和matlabplot如何在windows环境中安装

选着自己相应的.whl下载。我的选:

wordcloud-1.8.0-cp39-cp39-win_amd64.whl

然后回到cmd

4 安装

pip install wordcloud-1.8.0-cp39-cp39-win_amd64.whl

python 3.9 Numpy scipy和matlabplot如何在windows环境中安装

5 再次出现错误

Using legacy 'setup.py install' for matplotlib, since package 'wheel' is not installed.

直接安装wheel

pip install wheel

6 再次安装matlabplot

pip3 install matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple

不成功

7 在https://www.lfd.uci.edu/~gohlke/pythonlibs/找到matlabplot

python 3.9 Numpy scipy和matlabplot如何在windows环境中安装

下载后安装,

pip3 install matplotlib-3.3.2-cp39-cp39-win_amd64.whl

python 3.9 Numpy scipy和matlabplot如何在windows环境中安装

显示安装成功,赶紧找个程序来试一下:

import numpy as np 
from matplotlib import pyplot as plt 
 
x = np.arange(1,11) 
y = 2 * x + 5 
plt.title("Matplotlib demo") 
plt.xlabel("x axis caption") 
plt.ylabel("y axis caption") 
plt.plot(x,y) 
plt.show()

python 3.9 Numpy scipy和matlabplot如何在windows环境中安装

看完上述内容,你们掌握python 3.9 Numpy scipy和matlabplot如何在windows环境中安装的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI