Python使用豆瓣源安装Django(Django学习01)

环境:Windows10、python3.7

Django安装,以管理员身份运行命令行窗口,输入命令:

pip install -i https://pypi.doubanio.com/simple/ Django(包名前面有空格)

如果出错使用如下命令:

pip  install  -i  https://pypi.doubanio.com/simple/  --trusted-host pypi.doubanio.com  django

参数解释:

-i https://pypi.doubanio.com/simple/     # -i指定使用源 (-i == --index-url)
--trusted-host pypi.doubanio.com      # --trusted-host 表示添加信任主机

 

其余源方法同理:

阿里云 http://mirrors.aliyun.com/pypi/simple/ 
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 
豆瓣(douban) http://pypi.doubanio.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
 

 

你可能感兴趣的:(python)