본문 바로가기
TIL

tmux 아나콘다 환경으로 변경하기

by _KHK 2022. 5. 13.

한 화면에 터미널을 여러 등분해서 볼 수 있게 해주는 프로그램으로 tmux가 있다.

 

brew를 통해 tmux를 설치하고 실행했는데 콘다 환경은 실행되어 있지만 실제로 파이썬의 경로는 anaconda가 아닌 brew를 통해 실행되고 있었다.

 

다행히 문제를 해결할 수 있는 방법을 찾았고, 조금 귀찮지만 분할된 터미널마다 아래 명령어를 실행해주면 된다.

$ [[ -z $TMUX ]] || conda deactivate; conda activate base

 

 

명령어를 실행하고 난 뒤 

which python3

파이썬 경로를 확인하는 명령어를 실행하고 파이썬 경로가 아나콘다 환경의 파이썬인지 확인해본다.

 

 

명령어 실행 전

 

 명령어 실행 후

 

 

 

 

conda base env not set when entering tmux (conda 4.4) · Issue #6826 · conda/conda

I'm submitting a... bug report This is related to #6796, but the fix from the last comment therein does not work for me. Current Behavior When I open a new terminal, the conda base env loads co...

github.com

 

 

 

댓글