Ubuntu에서 Miniconda로 가상환경을 실행시킬 때 다음과 같은 에러가 뜨는 경우가 있다.
CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
To initialize your shell, run
$ conda init <SHELL_NAME>
Currently supported shells are:
- bash
- fish
- tcsh
- xonsh
- zsh
- powershell
See 'conda init --help' for more information and options.
IMPORTANT: You may need to close and restart your shell after running 'conda init'
이때 다음과 같이 conda.sh
를 실행시켜주면 잘 된다.
source miniconda3/etc/profile.d/conda.sh
conda activate [가상환경 이름]
[참고]
728x90
'개발' 카테고리의 다른 글
[Nginx] forward & reverse proxy (0) | 2023.07.08 |
---|---|
[fastapi] logging format 설정 (0) | 2023.07.08 |
TensorRT와 Triton (1) | 2023.06.25 |
[linux] port를 점유하고 있는 pid 찾기 (0) | 2023.06.02 |
[linux] pid로 실행중인 파일 찾기 (0) | 2023.06.02 |