Closed ChinnuJose closed 7 years ago
Hi,
I have a script, where i try to download packages from various sites. I use wget / curl for this.
if ! curl -k $URL --output $FILE ;then
While i download directly from server it is downloading the package. But when i download it through my application in browser it is showing error "CURL error: Proxy CONNECT aborted" for python sites(https://pypi.python.org/packages/1f/e2/75bded44c4bf43b882d4ce93cf41b8202981bf493484654643517787feed/oslosphinx-4.10.0.tar.gz) , all other sites are working fine.
Hi,
I have a script, where i try to download packages from various sites. I use wget / curl for this.
if ! wget --no-check-certificate --no-proxy -q $URL -O $FILE ;then
While i download directly from server it is downloading the package. But when i download it through my application in browser it is showing error "CURL error: Proxy CONNECT aborted" for python sites(https://pypi.python.org/packages/1f/e2/75bded44c4bf43b882d4ce93cf41b8202981bf493484654643517787feed/oslosphinx-4.10.0.tar.gz) , all other sites are working fine.