pip is not recognized in Anaconda Prompt

后端 未结 7 1290
刺人心
刺人心 2020-12-19 07:44

I\'m using Anaconda on Windows x64. I\'m trying to install some library using pip. However, the the command line isn\'t recognizing pip or any other scripts. The folder that

7条回答
  •  执笔经年
    2020-12-19 08:28

    When creating your environment, you need to specify pip as a dependency:

    conda create --name my-env pip
    activate my-env
    pip install ...
    

    Installing a new environment with all default anaconda packages:

    conda create --name my-env anaconda
    

提交回复
热议问题