docker

Docker https://subicura.com/2017/01/19/docker-guide-for-beginners-2.html $ curl -s https://get.docker.com/ | sudo sh 권한 추가 # 현재 접속중인 사용자에게 권한주기 $ sudo usermod -aG docker $USER  # your-user 사용자에게 권한주기 $ sudo usermod -aG docker your-user  $ docker version $ docker ps -a _______________________ Continue Reading …

tensorflow

https://www.tensorflow.org/install/install_linux Nvidia Driver 설치 _______________________ CUDA : (“Compute Unified Device Architecture”, 쿠다)는 그래픽 처리 장치(GPU)에서 수행하는 (병렬 처리) 알고리즘을 C 프로그래밍 언어를 비롯한 산업 표준 언어를 사용하여 작성할 수 있도록 하는 GPGPU 기술이다. https://developer.nvidia.com/cuda-downloads $ wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-8-0_8.0.61-1_amd64.deb $ cuda-repo-ubuntu1604_8.0.61-1_amd64.deb $ sudo Continue Reading …

anaconda 설정

다운로드, 설치 $ wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh $ bash Anaconda3-5.0.1-Linux-x86_64.sh 기본설정 enter enter.. $ python -V $ conda -V $ conda -h $ conda upgrade anaconda $ conda env list $ conda search python $ conda create -n hoon python=3.6 $ source activate hoon Continue Reading …

git 설정

– github 가입 – git 설치 – git 설치 확인 $ git –version $ git config –list – 사용자 설정 $ git config –global user.name “byunghoon” $ git config –global user.email wwwhihaho@gmail.com – github repo 만들기 $ echo “# 스터디 Continue Reading …

AWS EC2 freetier Ubuntu에 LAMP, Https, WordPress 설치

https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu-16-04 https://www.digitalocean.com/community/tutorials/how-to-secure-apache-with-let-s-encrypt-on-ubuntu-16-04 https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-with-lamp-on-ubuntu-16-04