Windows10 安装spyder3

Windows10 安装spyder3

一 . 先安装python2或python3

python下载地址点击跳转
https://www.python.org/
我这里下载的是最新的3.7
Windows10 安装spyder3_第1张图片
点击进去找到对应的版本
Windows10 安装spyder3_第2张图片
一定要勾选ADD python path 不然自己配置环境比较麻烦
Windows10 安装spyder3_第3张图片
安装完成后,点击键盘 windos+r 输入cmd,进入命令行,输入python
在这里插入图片描述
恭喜你python已经安装完成了

下载安装spyder

spyder下载地址点击跳转
https://pypi.org/project/spyder/
对应自己的python版本下载对应的spyder
Windows10 安装spyder3_第4张图片

在命令行用cd切换到spyder下载的目录执行pip install spyder-3.3.3-py3-none-any.whl
Windows10 安装spyder3_第5张图片
中间的忽略,最后显示successfully就安装完成了
Windows10 安装spyder3_第6张图片
这个时候在命令行输入spyder3没有反应,在windows的安装程序中也找不到sprder

在这里插入图片描述
去查看了文档发现,我们需要pyqt5或pyqt4
Windows10 安装spyder3_第7张图片
安装pyqt5
在这里插入图片描述
已经安装了 但是再次运行spyder还是没反应,呕心沥血查看网上的教程发现需要安装pyqt5—tools
运行pip install PyQt5-tools出现超时的错误raise ReadTimeoutError(self._pool, None, ‘Read timed out.’)
在这里插入图片描述
解决办法:python的源换成了清华源
在C:\Users\Administrator\下新建pip文件夹,在pip文件夹下创建pip.ini文件,把下面的代码拷贝进去

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

再次安装pyqt5遇到Could not install packages due to an EnvironmentError: [Errno 2] No such file or directory
Windows10 安装spyder3_第8张图片
解决办法:运行 pip install pyqt5 pyqt5-tools
Windows10 安装spyder3_第9张图片
成功打开spyder并运行python
Windows10 安装spyder3_第10张图片
恭喜!!!

你可能感兴趣的:(Windows10 安装spyder3)