Can conda install source distributions?

后端 未结 2 899
长发绾君心
长发绾君心 2021-02-19 14:26

Can conda install be used to install source-distributions (i.e. non-archived import packages that have a setup.py)?

2条回答
  •  青春惊慌失措
    2021-02-19 15:26

    Yes and no. You can not conda install per se. However, as the Conda documentation says, Conda ships with pip, so you should be able to pip install -e . your package. You can also install with traditional python setup.py [install|develop].

    Remember to activate your Conda environment before installation if you're using one instead of site packages.

提交回复
热议问题