Installing package not found in conda

后端 未结 3 2057

I\'m using python 3.6 as anaconda, and im trying to install python-twitter package, but there is no package compatible from conda manager. How can i download the pa

3条回答
  •  名媛妹妹
    2021-02-12 10:04

    If you prefer conda packages over pip where possible, check other channels first with:

    conda install [--channel | -c] conda-forge
    

    Search multiple channels:

    conda search -c bioconda -c conda-forge
    

    Add a channel to the default search (see docs for managing precedence order):

    conda config --add channels conda-forge
    

    Some of the popular channels are listed in Explanation of different conda channels

提交回复
热议问题