安装在 conda 中找不到的包
Installing package not found in conda
我正在使用 python 3.6 作为 anaconda,我正在尝试安装 python-twitter
包,但没有与 conda 管理器兼容的包。我如何才能在 conda manager 之外下载软件包,以便稍后在 jupyter notebook 中使用它?
您可以在 conda env 中安装 pip
然后 运行 pip install python-twitter
.
应该可以。
Ubuntu:/$ which pip
/home/superadmin/anaconda2/bin/pip
Ubuntu:/$ /home/superadmin/anaconda2/bin/pip install apache-beam
成功了...
如果您更喜欢 conda 包而不是 pip,请先检查其他渠道:
conda install [--channel | -c] conda-forge
搜索多个频道:
conda search -c bioconda -c conda-forge
将频道添加到默认搜索(请参阅 docs 以管理优先顺序):
conda config --add channels conda-forge
Explanation of different conda channels
中列出了一些热门频道
我正在使用 python 3.6 作为 anaconda,我正在尝试安装 python-twitter
包,但没有与 conda 管理器兼容的包。我如何才能在 conda manager 之外下载软件包,以便稍后在 jupyter notebook 中使用它?
您可以在 conda env 中安装 pip
然后 运行 pip install python-twitter
.
应该可以。
Ubuntu:/$ which pip
/home/superadmin/anaconda2/bin/pip
Ubuntu:/$ /home/superadmin/anaconda2/bin/pip install apache-beam
成功了...
如果您更喜欢 conda 包而不是 pip,请先检查其他渠道:
conda install [--channel | -c] conda-forge
搜索多个频道:
conda search -c bioconda -c conda-forge
将频道添加到默认搜索(请参阅 docs 以管理优先顺序):
conda config --add channels conda-forge
Explanation of different conda channels
中列出了一些热门频道