Conda: installing local development package into single conda environment

后端 未结 4 1429
醉梦人生
醉梦人生 2021-02-07 07:42

If I were using a virtualenv, I would activate my project\'s virtual environment then install the package I am developing in develop mode. Something like the following:

4条回答
  •  孤城傲影
    2021-02-07 08:10

    Activate the environment int which the package is to be installed

    conda activate [environment]
    

    Install the package

    conda install [package]
    

提交回复
热议问题