問題描述
我需要安裝 Tensorflow,并嘗試先添加環境.但我收到 HTTP 連接失敗錯誤.我支持公司代理,并且已經在 .condarc 文件中很好地定義了它們.這是我得到的錯誤:
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:UsersRahulDownloads>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',))",),)
我在他們的問題跟蹤器中詳細發布了這個問題:https://github.com/conda/conda/issues/7283
I posted this issue in their issue tracker here in detail: https://github.com/conda/conda/issues/7283
正如問題跟蹤器中提到的,我已經嘗試過重置 ssl、添加 condarc 文件等.但到目前為止還沒有運氣.我的代理按預期工作,并且我在 condarc 文件中的條目是正確的.也可以通過瀏覽器毫無問題地訪問連續存儲庫.
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.
conda update
或 conda install
之類的命令都不起作用,并且在執行時會給出相同的錯誤堆棧.
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?
推薦答案
顯然,condarc 文件已更新并重寫為空我運行配置命令時的文件.我嘗試運行代理設置和通過命令行受信任的主機,但它不起作用.但后來發現通過命令行調用受信任主機已停止,因此我在 pip.ini 文件中添加了相同的內容.之后就成功了!
Apparently, the condarc file was updated and rewritten as an empty file while I ran config command. I tried running proxy settings and trusted host through command line, but it doesn't work. But then found that invoking trusted host through command line is discontinued and so I added the same in pip.ini file. After that it worked!
就像我在 GitHub 問題跟蹤器 中提到的,我在下面的 pip 中添加了.ini,它工作了
Like I mentioned in the GitHub issue tracker, I added below in pip.ini and it worked
trusted-host = pypi.python.org pypi.org files.pythonhosted.org
這篇關于CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.continuum.io/pk gs/r/win-64/repodata.json.bz2>的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!