我正在尝试在Anaconda的Tensorflow环境中安装NLTK。我已经为Windows 7 pc使用了命令“ conda install nltk”。它给出以下错误:

 CondaHTTPError: HTTP 000 CONNECTION FAILED for url
 <https://repo.continuum.io/pkgs/r/win-32/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.

 SSLError(MaxRetryError('HTTPSConnectionPool(host=\'repo.continuum.io\', port=443): Max retries exceeded with url: /pkgs/r/win-32/repodata.json.bz2 (Caused by SSLError(SSLError("bad handshake: Error([(\'SSL routines\', \'ssl3_get_server_certificate\', \'certificate verify failed\')],)",),))',),)


我的系统中有一个附加证书。所以我将证书哈希添加到anaconda / ssl的cert.pem文件中。它适用于Linux计算机,但Windows计算机仍会引发错误。我该怎么解决?

最佳答案

您仍然可以通过从Windows计算机上的浏览器导出CA证书来使用ssl。

http://docs.bvstools.com/home/ssl-documentation/exporting-certificate-authorities-cas-from-a-website

将证书保存到您可以访问的文件夹,然后只需将.condarc文件中的ssl_verify值设置为证书的位置。

ssl_verify: C:\\conda_config\\certificates\\ca_cert.cer


这将使您很容易受益于ssl保护。

10-02 04:06