Anaconda 설치 및 사용 가이드

Install app Share web page

Anaconda 설치 및 사용 가이드입니다.

🐍 Anaconda 설치 및 사용 가이드

📌 Anaconda 기본 정보

💻 설치 방법

✅ Windows / macOS

✅ Linux (Ubuntu 기준)

sudo apt-get update
        wget https://repo.anaconda.com/archive/Anaconda3-2023.03-1-Linux-x86_64.sh
        bash Anaconda3-2023.03-1-Linux-x86_64.sh
        sudo reboot

참고: Ubuntu 22.04에 Anaconda 설치 가이드

✅ Raspberry Pi (aarch64)

sudo apt-get update
        uname -m  # aarch64 확인
        wget https://github.com/conda-forge/miniforge/releases/download/23.1.0-1/Mambaforge-23.1.0-1-Linux-aarch64.sh
        bash Mambaforge-23.1.0-1-Linux-aarch64.sh
        sudo reboot

⚙️ 가상환경 관리

🧪 파이썬 버전 관리

📦 패키지 검색 예시 (TensorFlow)

conda search -f tensorflow

다양한 버전과 Python 호환 정보가 출력됨

render.com 테스트 용 아나콘다 가상환경 생성

render.com 디폴트 파이썬 버전 확인

2024-12-16 and later: 3.11.11

conda create -n common-fastapi-web-app python=3.11.11
conda activate common-fastapi-web-app

📝 기타 팁