본문 바로가기
setting

[MacOS - M1] m1에 conda miniforge 설치

by clolee 2021. 9. 2.

1. brew를 통해 miniforge 설치

brew install miniforge

miniforge github: https://github.com/conda-forge/miniforge

 

GitHub - conda-forge/miniforge: A conda-forge distribution.

A conda-forge distribution. Contribute to conda-forge/miniforge development by creating an account on GitHub.

github.com

 

2. conda 명령어

# conda 정보
conda info

# 가상환경 생성
# conda create -n [가상환경이름] (python=3) //버전 지정은 생략가능
conda create -n pandas_info python=3

# 가상환경 목록
conda env list

# 가상환경 활성화
# conda activate [가상환경이름]
conda activate pandas_info

# 가상환경 비활성화
conda deactivate

 

3. 가상환경 활성화 후 필요한 패키지 설치

# pandas_info 가상환경 활성화
conda activate pandas_info

# 필요한 패키지 설치
conda install numpy scipy matplotlib ipython scikit-learn pandas jupyterlab

 

4. 패키지 확인

conda list

 

conda 명령어 참고 : https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#activating-an-environment

 

Managing environments — conda 4.10.3.post29+a34aeac02 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

docs.conda.io

참고 : https://hmfactory.tistory.com/26

          https://sikaleo.tistory.com/55

 

M1 Mac, scipy 설치하기. conda miniforge 셋업

M1칩셋,, 아무리 이번 M1칩셋을 달고 나온 Mac이 좋다고 하지만. 끝까지 버티다 M1.2 or M2 version이 나오면 구매하려고 마음먹었었지만. 피치못할 사정때문에 결국 M1 Mac을 구매할 수 밖에 없었다. 당

hmfactory.tistory.com

 

댓글