赞
踩
1,安装win10X64位系统
https://www.xitongzhijia.xyz/win1064.html
2,安装anconda3
官网下载(https://www.anaconda.com/download/)实在是太慢了,
所以从清华大学开源软件镜像站下载,
网址:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
清华大学开源软件镜像站
https://mirror.tuna.tsinghua.edu.cn/
3,pip 设置清华镜像源
在命令窗口中,必须逐条添加以下命令,
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
再输入以下命令,就修改完成了
conda config --set show_channel_urls yes
清华镜像源配置
方法1:永久配置,设为默认镜像源(推荐)
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
然后就可以愉快地使用了。
方法2:临时使用
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 你的包名
或
pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
方法3:换回默认源
conda config --remove-key channels
方法4:下面的命令来查看已经安装的内容
pip freeze
或
pip list
或
conda list
国内其它的源:
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
————————————————
4, 安装spyder最新版
pip install spyder==5.1.5
5,pycharm 社区版
1,下载及安装
在以下网站中下载,安装时记得把添加到环境变量的选项勾上
https://www.jetbrains.com/pycharm/download/#section=windows
https://www.jetbrains.com/pycharm/
6,安装PyQt5 + PyQt5-tools的最新版
(1)pyqt5安装,需要SIP的支持,所以先安装SIP,再安装pyqt5
pip install sip
pip install PyQt5
(2)安装qt designer
pip install PyQt5-tools
————————————————
PyQt5教程
https://www.bilibili.com/video/BV154411n79k?p=64
原文链接:https://blog.csdn.net/stormdony/article/details/80400032
7,pyqt5与pycharm配置
查看以下两个大神的详细介绍足矣。
原文链接:https://blog.csdn.net/stormdony/article/details/80400032
https://blog.csdn.net/Dreamhai/article/details/82701063
原文链接:https://blog.csdn.net/zhangziju/article/details/80243858
8,pyautogui自动化控制鼠标和键盘操作
https://blog.csdn.net/weixin_43430036/article/details/84650938
PyautoGui 常用教程(一篇就够)
原文链接:https://blog.csdn.net/weixin_38640052/article/details/112387653
9,qt官方文档
https://doc.qt.io/
10,python+pyqt5教程
原文链接:https://blog.csdn.net/a359680405/article/details/42486689
Python pyQt5 从零开始 新手上路(第一篇 环境和配置)
原文链接:https://blog.csdn.net/weixin_45216118/article/details/111912613
11,pandas教程
https://www.bilibili.com/video/BV1UJ411A7Fs?p=3
至此,系统开发环境已配置到位,可以做适当优化,即可备份系统。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。