python基础应用
cnblogs 2024-08-13 10:39:00 阅读 66
pip的使用
升级pip
<code>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 容版本,使用任何大于或等于指定版本,但不大于当前发行系列的版本,
安装 requirements.txt
中的包
pip install -r requirements.txt
更新 requirements.txt
中的包
pip freeze > requirements.txt
声明
本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。