관리 메뉴

솜씨좋은장씨

[Anaconda] CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. 해결 방법 본문

Programming/Python

[Anaconda] CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. 해결 방법

솜씨좋은장씨 2020. 7. 17. 14:25
728x90
반응형

평소와 같이 아나콘다로 만든 가상환경을 활성화하기 위하여

$ conda activate tensorflow_1_11_p36

위처럼 가상환경 활성화 명령어를 입력하였으나

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 ". /home/ubuntu/anaconda3/etc/profile.d/conda.sh" >> ~/.bashrc

or, for all users, enable conda with

    $ sudo ln -s /home/ubuntu/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="/home/ubuntu/anaconda3/bin:$PATH"

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

위와 같은 오류가 발생하면서 conda activate 명령어가 제대로 작동하지 않았습니다.

 

해결 방법은 다음과 같습니다.

 

해결 방법

먼저 홈 디렉토리가 아니라면 홈 디렉토리로 이동합니다.

$ cd ~

그 다음

$ source ~/anaconda3/etc/profile.d/conda.sh

위의 명령어를 한번 실행합니다.

 

실행하고 난 뒤

$ conda activate tensorflow_1_11_p36

다시 명령어를 실행해보면 이번에는 제대로 실행이 되는 것을 확인할 수 있습니다.

읽어주셔서 감사합니다!

Comments