首页 > 编程语言 > 详细

Python安装模块常用镜像源

时间:2020-08-28 23:18:52      阅读:125      评论:0      收藏:0      [点我收藏+]


阿里云
    
    https://mirrors.aliyun.com/pypi/simple/

豆瓣(douban)
    
    https://pypi.douban.com/simple/

清华大学

    https://pypi.tuna.tsinghua.edu.cn/simple/

中国科学技术大学

    https://pypi.mirrors.ustc.edu.cn/simple/

#Win 
python -m pip install xxx -i https://pypi.douban.com/simple
 
python -m pip install SomePackage==1.0.4    # specific version
python -m pip install "SomePackage>=1.0.4"  # minimum version

#使用并行安装的多个 Python 版本
#win
py -2   -m pip install SomePackage  # default Python 2
py -2.7 -m pip install SomePackage  # specifically Python 2.7
py -3   -m pip install SomePackage  # default Python 3
py -3.4 -m pip install SomePackage  # specifically Python 3.4

#在 Linux, Mac OS X 以及其他 POSIX 系统中
python2   -m pip install SomePackage  # default Python 2
python2.7 -m pip install SomePackage  # specifically Python 2.7
python3   -m pip install SomePackage  # default Python 3
python3.4 -m pip install SomePackage  # specifically Python 3.4

#将 --user 选项传入 python -m pip install 将只为当前用户而非为系统中的所有用户安装软件包

 

Python安装模块常用镜像源

原文:https://www.cnblogs.com/MAN001/p/13579754.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!