Conda: Installing / upgrading directly from github

前端 未结 4 1788
心在旅途
心在旅途 2020-11-28 18:30

Can I install/upgrade packages from GitHub using conda?

For example, with pip I can do:

pip install git+git://github.com/scrappy/scrappy         


        
4条回答
  •  眼角桃花
    2020-11-28 19:00

    The answers are outdated. You simply have to conda install pip and git. Then you can use pip normally:

    1. Activate your conda environment source activate myenv

    2. conda install git pip

    3. pip install git+git://github.com/scrappy/scrappy@master

提交回复
热议问题