■ 가상환경 목록 조회
conda info --envs
■ 새로운 가상환경 생성
conda create -n 가상환경이름 python=3.6
■ 가상환경 활성화
conda activate 가상환경이름
■ 가상환경 비활성화
conda deactivate
■ 가상환경 복사
conda create -n TOBE_가상환경이름 --clone ASIS_가상환경이름
■ 해당 가상환경에 라이브러리 설치하기
conda install 라이브러리명
또는
conda install -n 가상환경이름 라이브러리명
■ 라이브러리 목록 조회
conda list
■ 가상환경 삭제
conda remove -n 가상환경이름 --all
■ SSL 인증 비활성화
conda config --set ssl_verify false
'스크립트 > Python' 카테고리의 다른 글
파이썬 개발환경 설정 (0) | 2021.07.08 |
---|---|
Atom 패키지 조회시 self signed certificate in certificate chain 오류 조치 방법 (1) | 2021.06.08 |
파이썬 GUI (tkinter 라이브러리) (1) | 2021.05.30 |
urlopen 파라메터 전달 (0) | 2021.05.30 |
urllib.parse (0) | 2021.05.30 |