devpi | 本地安装
http://benpaodewoniu.github.io/2020/02/10/devpi0/ https://segmentfault.com/a/1190000000664196 https://pypi.org/project/devpi-server/ https://devpi.net/docs/devpi/devpi/stable/%2Bd/index.html ++++++++++++++++ http://t.csdn.cn/61PBI docker启devpi服务,搭建自己的pypi源: https://zhuanlan.zhihu.com/p/476257058 +++++++++++++++++++++++++++++++++++++++++++++
准备python环境
https://blog.csdn.net/weixin_44065078/article/details/121098995 Windows下Pycharm中Terminal无法进入conda环境和Python Console 不能使用 https://blog.csdn.net/weixin_43646128/article/details/119869668
Python Pip 更换国内安装源
阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) http://pypi.douban.com/simple/ 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
pip install xlrd -i http://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.tuna.tsinghua.edu.cn
永久修改 linux 修改 ~/.pip/pip.conf (没有就创建一个), 内容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
windows 直接在 user 目录中创建一个 pip 目录,如:C:\Users\xx\pip,在 pip 目录下新建文件 pip.ini,内容如下
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
三步解决python PermissionError: [WinError 5]拒绝访问的情况
https://www.jb51.net/article/185218.htm
|