陈玉春 发表于 2024-8-13 10:26:59

python基础应用

pip的使用

升级pip

python3 -m pip install --upgrade pip镜像源设置


[*]查看镜像源 pip config list
[*]指定镜像源更新依赖 pip3 install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
[*]设置全局镜像源:
pip config set global.index-url mirror_url_path#指定镜像服务器域名地址
pip config set global.timeout number #设置连接超时时间,以秒为单位,指定number秒后,连接超时
pip config set install.trusted-host hostname #将以上镜像服务器的域名加入到Install命令的信任域名列表内

[*]例如:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
常用镜像源

#国内比较常用的镜像地址,本人选择的是阿里云的镜像服务
http://pypi.douban.com/simple/ #豆瓣
https://pypi.tuna.tsinghua.edu.cn/simple#清华开源
https://mirrors.aliyun.com/pypi/simple/#阿里云,比较靠谱,最起码可以安装jupyter
https://pypi.mirrors.ustc.edu.cn/simple/#中科大
https://pypi.hustunique.com/ #华中理工
https://pypi.sdutlinux.org/#山东理工requirements.txt

requirements.txt 是 python 在不同的环境中对依赖包的一种约定,用于列出 Python 项目中所有的依赖包以及对应版本号的文本文件。一般在项目的在工程目录下。
编写格式

pkg==version 等于版本
pkg>version 大于版本
pkg<version 小于版本
pkg>=version 大于等于版本
pkg<=version 小于等于版本
pkg~=version 大于版本
pkg >= 1.0, <=2.0 容版本,使用任何大于或等于指定版本,但不大于当前发行系列的版本,
来源:https://www.cnblogs.com/knxhd/p/18356238
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!
页: [1]
查看完整版本: python基础应用