Update: 20240130
01 Anaconda
https://www.anaconda.com/download
https://repo.anaconda.com/archive/Anaconda3-2023.09-0-Windows-x86_64.exe
集成Python、命令行工具Anadonda Prompt、集成开发环境Spyder、交互式笔记本IPython和Jupyter Notebook。
使用conda进行环境管理和包管理
02 PyCharm
https://www.423down.com/14953.html
PyCharm是一种Python IDE(Integrated Development Environment,集成开发环境),带有一整套可以帮助用户在使用Python语言开发时提高其效率的工具,比如调试、语法高亮、项目管理、代码跳转、智能提示、自动完成、单元测试、版本控制。此外,该IDE提供了一些高级功能,以用于支持Django框架下的专业Web开发。
03 PyQt5
pip install PyQt5 -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install PyQt5-tools -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install PyQt5designer -i https://pypi.tuna.tsinghua.edu.cn/simple
参考文章:
保姆级教程:Anaconda 安装及使用
https://www.toutiao.com/article/7067720415338037768/
conda配置环境的一些常用命令
https://blog.csdn.net/a1456123a/article/details/128890604
Pyqt5+PyQt-Fluent-Widgets+Pycharm环境安装
https://zhuanlan.zhihu.com/p/641791925?utm_id=0
python安装第三方库(国内镜像源整理)
https://blog.csdn.net/bugang4663/article/details/135193832
从多方面用法介绍Conda查看源
https://www.python100.com/html/I43MY04KVD96.html
01 Anaconda
;清华镜像源
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
;创建py311环境并指定到具体的目录中
conda create –prefix D:\Python\anaconda3\envs\py311 python=3.11
conda activate D:\Python\anaconda3\envs\py311
;查看现有环境
conda env list
;安装PyQt5
pip install PyQt5 -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install PyQt5-tools -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install PyQt5designer -i https://pypi.tuna.tsinghua.edu.cn/simple
;显示当前环境中所有已安装的库及其版本信息
conda list
;只列出特定环境中的库
conda list -n py311