반응형
집에서는 잘 되는데....왜 회사에서는 안되냐고요....
python개발시, pip가 안되면 주금인데.....
특히 Proxy환경하에서는 삽질하게 만드는 오류가 많이 나서 구글 끝에 알아낸 방법임.
아래와 같이 옵션을 주면 동작함.
python -m pip install --index-url=http://pypi.python.org/simple/ --trusted-host pypi.python.org --proxy http://PROXY.ADDRESS:PORT |
- 기타 참고: 각종 Proxy 설정
더보기
Woking behind the proxy 각종 프로그램에서 프록시 설정하기
오늘
I have troubled while using programs which use networks behinde proxy. So I summerized how to configure proxy.
I found some similar document like mine. but a little different.
nodejs & npm & ionic
- npm config set proxy http....
- npm config set https-proxy http://xxxx
git
git config --global http.proxy http://xxxxx
or .gitconfig
[http]
proxy = http://xxx.xxx.xxx:0000
curl
- export http_proxy=http://aaa.aa.aa.aa.:0000
- export https_proxy=http:/aaa.aa.aaa.aa:0000
- curl -x http://xx.xxx.
- curl --proxy http://sss.sss
java
- -Dhttp.proxyHost=xxx.xxx.xxx -Dhttp.proxyPort=0000
- or using system proxy
- java -Djava.net.useSystemProxies=true
apt-get
- cd /etc/apt
- sudo vi apt.conf
- Acquire::http::proxy "http://xxx.xxx.xx:000"
python pip
pip install --proxy http://xxx.xxx:000 modulename
cert error :
pip --cert certfile.pem install moduleName
** using config
pip/pip.conf
[global]
cert=/aaa/aaaa/certfile.pe
** when ssl error is occurred.
(pip version: 8.0.2)
pypi.python.org is download server.
pip install module_name --trusted-host pypi.python.org
gradle
gradle.properties
systemProp.http.proxyHost=111.111.111.111
systemProp.http.proxyPort=111
systemProp.https.proxyHost=222.222.222.222
systemProp.https.proxyPort=111
반응형
'【Programming】 > Python' 카테고리의 다른 글
Python 메인함수 - if __name__ == "__main__" 의미 (0) | 2022.01.27 |
---|---|
[Windows] Python 개발환경 with Anaconda (0) | 2022.01.17 |
[Windows] Unofficial Windows Binaries for Python Extension Packages (0) | 2016.12.19 |
[Windows] Unable to find vcvarsall.bat (0) | 2016.12.19 |
Python Editors (0) | 2011.03.22 |