Thief of Wealth
anaconda jupyter 커널관리
개발/기타 2019. 7. 4. 13:59

주피터에서 다양한 가상환경에 따라 사용하는 방법은? conda install nb_conda

anaconda tensorflow gpu설치
개발/Deep Learning 2019. 7. 3. 21:07

https://eehoeskrap.tistory.com/293 아나콘다 설치 후 1. 가상환경 생성conda create -n 가상환경이름 python=3.6 2. 가상환경 Activationsource activate 가상환경이름 3. TensorFlow GPU 설치conda install -c anaconda tensorflow-gpu (2019년 3월 5일 기준 )이렇게 설치하면 현재 아나콘다 패키지에 나와있는 최신 버전인 TensorFlow 1.12 버전으로 설치되며CUDA 9.2, cuDNN 7.2.1 로 설정된다.필자는 CUDA 10.0 버전이 설치된 상태에서 가상환경을 위와 같이 설정하였다. 텐서플로우 GPU 버전 패키지 확인 https://anaconda.org/anaconda/tensor..

' error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 ' ?
개발/Linux 2019. 7. 2. 22:22

sudo apt-get install python3.6-dev끝

window ubuntu bash python 버젼바꾸기
개발/Linux 2019. 7. 2. 21:44

sudo add-apt-repository ppa:fkrull/deadsnakessudo add-apt-repository ppa:jonathonf/python-3.6sudo apt-get updatesudo apt-get install python3.6 sudo update-alternatives --display python3이건 에러뜨면 정상 sudo rm /usr/bin/python3ls -alh /usr/bin/python* sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.5 1 sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/pyt..

window Ubuntu Bash에서 root Directory는?
개발/Linux 2019. 7. 2. 21:10

jupyter notebook --generate-config 주피터 경로설정해야하는데 못찾을때C:\Users\컴퓨터이름\AppData\Local\lxss\home\리눅스유저이름\.jupyter c.NotebookApp.notebook_dir = '../../Users/DESKTOP/Desktop'로 주피터 위치도 바꿔주고 sudo pip3 install tensorflow까지 해주자

MNIST 동작 보기
개발/Deep Learning 2019. 7. 2. 20:55

http://scs.ryerson.ca/~aharley/vis/conv/flat.html

mac mnist load_data SSL 에러 해결방법
개발/Python 2019. 6. 30. 21:00

/Applications/Python\ 3.6/Install\ Certificates.command 업데이트해준다.

python 가상환경 생성
개발/Python 2019. 6. 30. 00:06

가상환경용 폴더로 이동pip3 install virtualenvvirtualenv 가상환경명source ./가상환경명/bin/activate activate성공!

profile on loading

Loading...