의료영상 처리, 컴퓨터 비전을 위한 모델을 학습시키고 다룰 때를 위해 구성 해놓은 가상환경 설정 명령어 모음입니다.
주로 medical image segmentation, U-Net based models, ViT models, Albumentation 등을 다루는데 사용되었습니다.
최초 'conda' 환경 세팅 명령어
conda upgrade conda —all -y
conda update -n base conda -y
conda update —all
conda update -n base -c defaults conda -y
python -m pip install —upgrade pip
'Vision' 환경 세팅 명령어
conda create -n Vision -y
conda update conda --all -y
conda install numpy
conda install pandas
conda install scipy
conda install matplotlib
conda install -c conda-forge scikit-learn
nvidia-smi
conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia
# https://pytorch.org/get-started/locally/
conda install -c conda-forge easydict
conda install -c conda-forge opencv
conda install -c conda-forge imgaug -y
conda install -c conda-forge albumentations -y
conda install -c conda-forge tqdm -y
conda install -c conda-forge umap-learn -y
conda install -c conda-forge monai
# https://docs.monai.io/en/stable/installation.html#validating-the-install
conda install -c anaconda h5py
# for jupyter, ipynb
conda install -n Vision ipykernel --update-deps --force-reinstall
'개발새발 > 개발 셋업' 카테고리의 다른 글
[Docker, Linux] GPG에러 해결, public key 수동 설치 (apt-get이 에러가 발생하며 동작하지 않을 때) (0) | 2023.01.19 |
---|---|
[Docker] 서버 Docker, miniconda 개발 환경 세팅 (1) | 2023.01.18 |
[SSH] Authorized Keys generating (ssh key) | ssh 접속을 위한 key 생성 (0) | 2022.09.21 |
[Linux] Linux, Ubuntu nested cmd 방법 (0) | 2022.01.13 |
[Linux] GPU 장비 이름 얻기, CPU 코어수 얻기 (0) | 2021.10.22 |