conda 환경변수, 명령어

BABY CAT·2023년 7월 18일
0

python

목록 보기
22/22

*돋보기 버튼에 anaconda 검색하여 설치 경로 탐색 가능

환경변수

환경변수 > 시스템변수 > path > 새로만들기 >

1콘다설치폴더

2콘다설치폴더Library

32콘다설치폴더Scripts

환경변수설정 > 재부팅
명령프롬프트 재실행

확인

conda -v

conda init

명령프롬프트 재실행

conda activate base

(conda info --envs, conda create -n {name} python=3.x.x)

명렁어

리스트 conda info --envs

삭제 conda env remove -n [name]


이닛 conda init

생성 conda create -n [name] python=3.7

액티베이트 conda activate [name] (conda deactivate)

conda config --add channels conda-forge 로 채널을 추가하고

conda config --show channels 로 등록된 채널들을 확인해보자.

lib설치 conda install -c conda-forge [library]

1개의 댓글

comment-user-thumbnail
2023년 7월 18일

소중한 정보 잘 봤습니다!

답글 달기