ошибка при попытке установить пакет Python - PullRequest
0 голосов
/ 07 ноября 2019

Я попытался установить определенный пакет cx_oracle

cd ~/anaconda3
export http_proxy=********:80
export https_proxy=********:80
export ftp_proxy=********:80
source activate root
conda config --set ssl_verify False
conda install -c anaconda cx_oracle

и получил кучу ошибок:

>     If the requested url is in fact a valid conda channel, please request that the
>     channel administrator create `noarch/repodata.json` and associated
>     `noarch/repodata.json.bz2` files, even if `noarch/repodata.json` is empty.
>     $ mkdir noarch
>     $ echo '{}' > noarch/repodata.json
>     $ bzip2 -k noarch/repodata.json

.............. .

>  PackageNotFoundError: Package missing in current linux-64 channels:
>       - cx_oracle

ранее мне приходилось отключать проверку ssl (из-за ошибки сертификата ssl): conda config --set ssl_verify False

есть идеи? спасибо

...