Anaconda 更新失败的解决办法
本地环境:
Windows 10,Anaconda Python 3.7.1
1:异常现象
错误信息:
C:\Users\faily>conda install scrapy
Solving environment: failed
CondaHTTPError: HTTP 000 CONNECTION FAILED for url
https://mirrors.ustc.edu.cn/anaconda/pkgs/free/noarch/repodata.json
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.
SSLError(MaxRetryError(‘HTTPSConnectionPool(host=‘
mirrors.ustc.edu.cn
’, port=443): Max retries exceeded with url: /anaconda/pkgs/free/noarch/repodata.json (Caused by SSLError(“Can’t connect to HTTPS URL because the SSL module is not available.”))’))
按照上面的提示信息,还是镜像网址的问题。解决办法如下:
方法1和方法2任选其一即可,推荐使用方法1,简单快捷
方法1:通过conda config 命令配置:
找到.condarc文件(以点开头),一般表示 conda 应用程序的配置文件,在用户的家目录(windows:C:\users\username\,linux:/home/username/)。
打开如下图所示,这个是
修改过的
。
将原来的.condarc文件修改成下面的文件。
channels:
–
http://mirrors.ustc.edu.cn/anaconda/pkgs/free/
show_channel_urls: true
在命令行或Anaconda Prompt中,输入conda info,查看默认配置的镜像源 (channel URLs对应的)和配置文件路径(config file):
C:\Users\faily>conda info
active environment : None user config file : C:\Users\faily\.condarc
populated config files : C:\Users\faily.condarc
conda version : 4.5.12
conda-build version : 3.17.6
python version : 3.7.1.final.0
base environment : C:\Anaconda3 (writable)
channel URLs : http://mirrors.ustc.edu.cn/anaconda/pkgs/free/win-64
http://mirrors.ustc.edu.cn/anaconda/pkgs/free/noarch
package cache : C:\Anaconda3\pkgs
C:\Users\faily\AppData\Local\conda\conda\pkgs
envs directories : C:\Anaconda3\envs
C:\Users\faily\AppData\Local\conda\conda\envs
C:\Users\faily.conda\envs
platform : win-64
user-agent : conda/4.5.12 requests/2.21.0 CPython/3.7.1 Windows/10 Windows/10.0.17134
administrator : False
netrc file : None
offline mode : False
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
方法2:通过conda config 命令配置镜像地址:
直接配置中科大的镜像
https://mirrors.ustc.edu.cn/anaconda/pkgs/free:
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
- 1
- 2
- 3
再查看配置的镜像源:
通过上述两种方法配置地址成功后,即可对所有工具包进行升级。
更新是为了避免可能发生的错误, 我们在命令行输入 conda upgrade –all 先把所有工具包进行升级。
C:\Users\faily> conda upgrade --all
Solving environment: done
Package Plan
environment location: C:\Anaconda3
The following packages will be downloaded:
package | build
---------------------------|-----------------
pandoc-1.19.2.1 | 1 18.7 MB http://mirrors.ustc.edu.cn/anaconda/pkgs/free
blas-1.0 | mkl 6 KB http://mirrors.ustc.edu.cn/anaconda/pkgs/free
conda-env-2.6.0 | 0 498 B http://mirrors.ustc.edu.cn/anaconda/pkgs/free
bzip2-1.0.6 | 0 42 KB http://mirrors.ustc.edu.cn/anaconda/pkgs/free
------------------------------------------------------------
Total: 18.7 MB
The following packages will be UPDATED:
blas: 1.0-mkl defaults --> 1.0-mkl http://mirrors.ustc.edu.cn/anaconda/pkgs/free
pandoc: 1.19.2.1-hb2460c7_1 defaults --> 1.19.2.1-1 http://mirrors.ustc.edu.cn/anaconda/pkgs/free
The following packages will be DOWNGRADED:
bzip2: 1.0.6-hfa6e2cd_5 defaults --> 1.0.6-0 http://mirrors.ustc.edu.cn/anaconda/pkgs/free
conda-env: 2.6.0-1 defaults --> 2.6.0-0 http://mirrors.ustc.edu.cn/anaconda/pkgs/free
Proceed ([y]/n)? y
Downloading and Extracting Packages
pandoc-1.19.2.1 | 18.7 MB | ######################################################################################## | 100%
blas-1.0 | 6 KB | ######################################################################################## | 100%
conda-env-2.6.0 | 498 B | ######################################################################################## | 100%
bzip2-1.0.6 | 42 KB | ######################################################################################## | 100%
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
更新成功。