conda环境激活失败解决办法

conda环境激活失败解决办法

需求:在CMD中激活指定虚拟环境

conda activate lstm 报错
C:\Users\Admin>conda activate lstm

CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
If your shell is Bash or a Bourne variant, enable conda for the current user with

    $ echo ". E:\Anaconda3/etc/profile.d/conda.sh" >> ~/.bashrc

or, for all users, enable conda with

    $ sudo ln -s E:\Anaconda3/etc/profile.d/conda.sh /etc/profile.d/conda.sh

The options above will permanently enable the 'conda' command, but they do NOT
put conda's base (root) environment on PATH.  To do so, run

    $ conda activate

in your terminal, or to put the base environment on PATH permanently, run

    $ echo "conda activate" >> ~/.bashrc

Previous to conda 4.4, the recommended way to activate conda was to modify PATH in
your ~/.bashrc file.  You should manually remove the line that looks like

    export PATH="E:\Anaconda3/bin:$PATH"

^^^ The above line should NO LONGER be in your ~/.bashrc file! ^^^

方法一
# 激活环境
source activate
# 退出环境
source deactivate

报错

C:\Users\Admin>pip activate lstm
ERROR: unknown command "activate"
C:\Users\Admin>source activate
'source' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
方法二 这个办法可以解决我的问题,顺利进入环境!!!

指令

activate lstm

就是直接activate加上你的环境名字。

C:\Users\Admin>activate lstm
(lstm) C:\Users\Admin>conda install pillow
Solving environment: done

猜你喜欢

转载自blog.csdn.net/m0_37882192/article/details/108448570
今日推荐