ubuntu 下 anaconda 安装插件

来源:互联网 发布:adc0804连单片机 编辑:程序博客网 时间:2024/05/17 03:28

1. 安装progressbar

点击打开链接https://anaconda.org/anaconda/progressbar2

conda install -c anaconda progressbar2=3.18.0

2.  安装shapely

2.  安装shapely

Installing shapely from the conda-forge channel can be achieved by addingconda-forge to your channels with:

conda config --add channels conda-forge

Once the conda-forge channel has been enabled, shapely can be installed with:

conda install shapely

It is possible to list all of the versions of shapely available on your platform with:

conda search shapely --channel conda-forge

安装过程中出现以下问题,是因为翻墙软件修改了我的镜像链接,后来启动了lantern,方才成功

wgb@wgb:~$ conda install shapelyFetching package metadata ...CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/linux-64/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.ProxyError(MaxRetryError("HTTPSConnectionPool(host='mirrors.tuna.tsinghua.edu.cn', port=443): Max retries exceeded with url: /anaconda/cloud/msys2/linux-64/repodata.json (Caused by ProxyError('Cannot connect to proxy.', NewConnectionError('<requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7fac349003d0>: Failed to establish a new connection: [Errno 111] Connection refused',)))",),)

3.

3.


0 0