我正在使用Python3.6作为anaconda,我正在尝试安装python-twitter包,但是没有与conda管理器兼容的包。如何在conda管理器之外下载软件包以便稍后在jupyter notebook中使用?
发布于 2017-05-17 17:51:54
您可以在conda env中安装pip,然后运行pip install python-twitter。
应该能行得通。
发布于 2017-07-25 18:01:38
Ubuntu:/$ which pip
/home/superadmin/anaconda2/bin/pip
Ubuntu:/$ /home/superadmin/anaconda2/bin/pip install apache-beam它成功了..。
发布于 2018-11-23 05:15:26
如果您在可能的情况下更喜欢conda包而不是pip,请首先使用以下命令检查其他通道:
conda install [--channel | -c] conda-forge搜索多个频道:
conda search -c bioconda -c conda-forge将频道添加到默认搜索(有关管理优先顺序的信息,请参阅docs ):
conda config --add channels conda-forgeExplanation of different conda channels中列出了一些受欢迎的频道
https://stackoverflow.com/questions/44009966
复制相似问题