[toc]
教程
GUI教程
名称 | 链接 |
---|---|
Python GUI编程(Tkinter) | https://www.runoob.com/python/python-gui-tkinter.html |
廖雪峰-图形界面 | https://www.liaoxuefeng.com/wiki/1016959663602400/1017786914566560 |
Python GUI设计 tkinter菜鸟编程 | https://blog.csdn.net/m0_46653437/category_10441177.html |
第三库
名称 | 链接 |
---|---|
Pillow(最流行的 Python 图像处理库) | https://python-pillow.org/ |
制作简单 GUI 程序的 Python 库 | https://github.com/alfiopuglisi/guietta |
基于 G2Plot 封装的 Python3 可视化库 | https://github.com/hustcc/PyG2Plot |
数据科学方面的 Python 开源库 | https://github.com/lux-org/lux |
资源
How to Install Anaconda on Ubuntu 18.04 and 20.04
Windows配置pypy环境
- 下载对应版本pypy;
- 直接解压,并配置环境变量;
- 安装pypy pip,下载get-pip.py,并放到刚刚解压的pypy文件夹里;
- cmd进入文件夹并输入以下命令安装pip:
1 | pypy3 get-pip.py |
- 将刚生成的
..\Scripts
文件夹也添加环境变量- 然后就可输入
pypy3 -m pip install numpy
安装库- https://blog.csdn.net/weixin_39121325/article/details/88655370