GitHub加速访问

Aug. 19, 2020, 2:53 p.m.

read: 1484

加速GitHub,GitLab,Bitbucket等的访问:

git config --global https.proxy https://github.com.proxy socks5://127.0.0.1:port
git config --global https.proxy https://gitlab.com.proxy socks5://127.0.0.1:port
git config --global https.proxy https://bitbucket.org.proxy socks5://127.0.0.1:port

# ~/.ssh/config
Host github.com
User git
ProxyCommand nc -x 127.0.0.1:port %h %p

Host gitlab.com
User git
ProxyCommand nc -x 127.0.0.1:port %h %p

Host bitbucket.org
User git
ProxyCommand nc -x 127.0.0.1:port %h %p




pip出现ImportError: cannot import name 'py31compat'

更新pip版本 wget https://bootstrap.pypa.io/get-pip.py python get-pip.py

ubuntu pip 为django安装 uwsgi 出错

文章标题:ubuntu pip 为django安装 uwsgi 出错文章内容:Django部署阶段需要安装uwsgi:https://docs.djangoproject.com/zh-hans/2…

此站点由 ASP.NETIIS 驱动 | © 2018-2023 hupeng.me. All Rights Reserved.