Conda environment activation failure solution

Conda environment activation failure solution

Requirements: activate the specified virtual environment in CMD

conda activate lstm error
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! ^^^

method one
# 激活环境
source activate
# 退出环境
source deactivate

Report an error

C:\Users\Admin>pip activate lstm
ERROR: unknown command "activate"
C:\Users\Admin>source activate
'source' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
Method 2 This method can solve my problem and enter the environment smoothly! ! !

instruction

activate lstm

Just activate directly and add your environment name.

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

Guess you like

Origin blog.csdn.net/m0_37882192/article/details/108448570