下载
官网地址:https://www.python.org/
网速不好可以在国内下,注意各网站更新速度不同,选有最新版本的下载。
环境变量
安装时通常默认添加环境变量,如果遇到添加不成功的情况则需要手动添加环境变量。具体路径为:
我的电脑-属性-高级系统设置-环境变量
添加python路径后重启电脑。
包管理
使用pip下载包,基本格式命令行下输入:
pip3 install 包名
但外网速度太慢,可以通过参数i添加国内镜像源,主要镜像源地址如下:
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云: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/
例如,下载jupyter包可以改为:
pip3 install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple
如果嫌每次添加国内镜像过于繁琐,也可生成一个配置文件,永久更换镜像:
user目录中创建一个pip目录后建文件pip.ini。如:C:\Users\WQP\pip\pip.ini
在该ini配置文件中复制粘贴下述内容:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com