Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.continuum.io/pk gs/r/win-64/repodata.json.bz2>

I need to install Tensorflow and was trying to add up environment first. But I get HTTP Connection Failed error. I'm behind a corporate proxy and already defined them well in .condarc file. Here is the error I'm getting:

C:\Users\Rahul\Downloads>conda create -n tensorflow python=3.6 anaconda
Solving environment: failed
CondaHTTPError: HTTP 000 CONNECTION FAILED for url 
<https://repo.continuum.io/pk
gs/r/win-64/repodata.json.bz2>
Elapsed: -
An HTTP error occurred when trying to retrieve this URL.
HTTP errors are often intermittent, and a simple retry will get you on your 
way.
ConnectionError(MaxRetryError("HTTPSConnectionPool(host='repo.continuum.io, por
t=443): Max retries exceeded with url: /pkgs/r/win-64/repodata.json.bz2 (Caused
by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x0
000001A00393C88>: Failed to establish a new connection: [Errno 11002] getaddrinf
o failed',))",),)

I posted this issue in their issue tracker here in detail: https://github.com/conda/conda/issues/7283

As mentioned in issue tracker, I already tried resetting ssl, adding condarc file etc. But no luck so far. My proxy is working as expected and my entries in condarc file are correct. Also continuum repository is accessible via browser without issues.

None of the commands like conda update or conda install works and gives the same error stack while executing.

What might be going wrong here?

like image 630
Rahul Raj Avatar asked May 12 '18 11:05

Rahul Raj


People also ask

How do you resolve Condahttperror?

Solution 1: Copy And Paste this Files You just need to Copy And Paste this Files from D:\Anaconda3\Library\bin to D:\Anaconda3\DLLs. This Two File. Now your error must be solved.

What does Conda update Conda do?

Updates conda packages to the latest compatible version. This command accepts a list of package names and updates them to the latest versions that are compatible with all other packages in the environment. Conda attempts to install the newest versions of the requested packages.


1 Answers

I faced the same issue in Windows 10 machine and the below solution helps Add the following paths to environment variables:

  1. Anaconda3\Library\bin

  2. Anaconda3

  3. Anaconda3\Scripts

like image 67
Malay Revanth Avatar answered Oct 15 '22 15:10

Malay Revanth