728x90
anaconda 다운로드
https://www.anaconda.com/download#macos
bash shell profiled을 업데이트한다.
source ~/.bash_profile
conda 가상환경 생성하기
--name "가상환경이름" --python="버전"
$ conda create --name "airflow" python="3.10.9"
conda 가상환경 삭제하기
conda remove --name "가상환경이름"
conda 가상환경 활성화
conda activate "가상환경이름"
728x90
'Programming Languages > Python' 카테고리의 다른 글
Python 으로 코딩테스트 볼 때 유용한 code 정리 (0) | 2023.09.09 |
---|---|
[Python] any() 함수 (0) | 2023.06.26 |
[백준] 1022번: 소용돌이 예쁘게 출력하기 Python (0) | 2023.03.14 |
[Python] 2차원 배열 90도 회전하기 (시계방향) (0) | 2023.01.13 |
[백준] 17281번: 야구 (Python/파이썬) (0) | 2022.12.24 |