Anaconda 썸네일형 리스트형 Anaconda의 유료화에 따른 Miniconda+Conda_forge로 이동 (무료화) Anaconda는 conda를 위한 installer로 conda package manager를 제공하여 딥러닝을 위한 가상환경을 쉽게 꾸릴 수 있다. Anaconda는 자체 레포지토리인 Anaconda Repository를 이용하여 package를 관리하는데, 한동안은 이 레포지토리를 이용하는게 무료였다가 2020년 9월 부터는 유료로 바뀌었다고 한다. (** 200인 이상의 기업에서 해당 페로지토리를 이용하는 경우 유로이며 반드시 프로버젼을 이용해야 한다고 함.) 이를 피하기 위한 방법중 하나로 Miniconda를 설치하고 레포지토리를 Conda Forge로 지정하는것!! 이렇게 하면 무료로 계속 쓸 수 있는데 다만 Anaconda repository가 제공하는 package가 Conda Forege.. 더보기 RTX 3090 을 지원하는 pytorch anaconda로 설치하기 anaconda에서 바로 pytorch를 설치하면 deep learning 모델 학습 시 다음과 같은 error message가 나올 수 있다. $ CUDA error: no kernel image is available for execution on the device 이때 아래와 같은 방식으로 설치를 하자. 1. anaconda 환경을 만든다. (python 3.8이상) $ conda create -y -n example python=3.8 2. pytorch를 pip로 설치한다. $ pip install torch==1.11+cu113 torchvision==0.12.0+cu113 -f https://download.pytorch.org/whl/torch_stable.html 더보기 Anaconda를 이용한 env 생성 및 제거 # 생성 $ conda create -n tutorial python=3.8 # 삭제 $ conda env remove -n tutorial # 추출 $ conda env export > tutorial.yaml # yaml 파일로 부터 생성 conda env create --file tutorial.yaml 더보기 How to set anaconda python as default ** 우분투에서 아나콘다 파이썬을 기본 파이썬으로 설정 ** step1) open a terminal step2) edit bashrc file by typing$ gedit ~/.bashrc step3) add the following comment at the bottom of the file## ANACONDAexport PATH=/home/dooseop/anaconda3/bin:${PATH} step4) close the terminal and open again, and check $which python-> /home/username/anaconda3/bin/python 더보기 [tensorflow] How to install pycharm+anaconda+tensorflow(gpu) on window10 ** 윈도우10에서 파이참, 아나콘다, tensorflow 설치 ** Background: windows10-64bit, gtx-1070, CUDA8.0, cudnn8.0 step1) download an anaconda installation file from the website and install https://www.continuum.io/downloads step2) download a pycharm installation file from the website and install https://www.jetbrains.com/pycharm/ step3) run pycharm and create an empty project. step4) go [file]-[settings]-[Project.. 더보기 이전 1 다음