- 가상환경 만들기
- conda create --name myenv
- 가상환경 활성화
- conda activate myenv
- 가상환경 비활성화
- conda deactivate
https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html
Managing environments — conda 4.7.0.post2+1e64239b documentation
Conda removes the path name for the currently active environment from your system command. Note To simply return to the base environment, it's better to call conda activate with no environment specified, rather than to try to deactivate. If you run conda d
conda.io