건설 정보/Working Tool14 Ubuntu에서 chrome일 때 Jupyter notebook 사용하기 파폭이 아니라, 크롬을 기본 브라우저로 쓰고 있다면,Jupyter notebook 명령어를 사용해도 크롬만 켜지고 아무것도 안뜨는 황당한 경우가 발생할 수 있다. Terminal에서 아래와 같이 해결해보자. jupyter notebook --generate-config>>> jupyter_notebook_config.py 생성(config file) ~/.jupyter/jupyter_notebook_config.py>>> 해당 경로로 이동하여 jupyter_notebook_config.py 실행 후, # c.NotebookApp.browser = ''>>> 위의 ' ' 안에 /usr/bin/google-chrome 문구를 삽입한다. 즉, c.NotebookApp.browser = '/usr/bin/goo.. 2018. 2. 21. matplotlib 설치 난항 : sudo와 sudo -H의 차이?? matplotlib, numpy, scipy 를 설치하려 하니 $ sudo pip install matplotlib ... 등으로 하면, sanghumcho@SanghumCHO:~$ sudo pip install matplotlib[sudo] password for sanghumcho: The directory '/home/sanghumcho/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want.. 2017. 12. 10. vi 편집기 관련 사항 출처 : http://kimsee.tistory.com/36 http://hyeonstorage.tistory.com/274 Linux나 Unix에서 환경설정 파일 등을 수정해야 될때 vi 또는 vim을 사용한다. 하지만 윈도우의 단축키에 익숙해져 있는데다 자주 사용하지 않다보니 매번 명령어가 헷갈린다. 사용할때마다 찾아서 사용하기 보다 여기다 정리해놓고 참고해야겠다. 1. vi 실행하기 명령어 동작 vi file file을 연다 vi file1 file2file1 과 file2 를 차례로 연다 view file file을 읽기 모드로 연다 vi -R file file을 읽기 모드로 연다 vi + filefile을 열때 커서가 file 본문의 마지막 행에 위치한다. vi +n file file을 열어 n.. 2017. 12. 10. Vim insatll error 관련 출처 : https://askubuntu.com/questions/78406/cannot-install-vim 문제점 $ sudo apt-get install vim Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved ou.. 2017. 12. 10. Ubuntu Package 관련 명령어 Ubuntu에서 패키지를 관리하는 명령어들 중, 가장 기본이 되는 것이 apt-get다. $ apt-get update패키지 목록을 갱신 $ apt-get upgrade모든 패키지를 최신 버전으로 업그레이드 $ apt-get install xxxxxx 패키지를 설치 $ apt-get remove xxxxxx 패키지를 삭제 (설정파일은 삭제하지 않음) $ apt-get purge xxxxxx 패키지를 삭제. (remove와 다르게 설정파일도 삭제) 패키지 검색은 apt-cache로 한다. xxx라는 단어를 포함한 패키지를 검색하려면 아래와 같은 명령어를 적용한다.$ apt-cache search xxx apt-get 명령어의 사용법과 옵션은 다음과 같다.$ apt-get -h 2017. 12. 10. Tensorflow backend로 Keras 설치 출처 : http://tmmse.xyz/2017/03/01/tensorflow-keras-installation-windows-linux-macos/https://keras.io/ Before installing Keras, please install one of its backend engines: TensorFlow, Theano, or CNTK. We recommend the TensorFlow backend.TensorFlow installation instructions.Theano installation instructions.CNTK installation instructions. Tensorflow가 있는 작업환경에서 다음 명령어 실행 $ pip install keras 만약, Memory.. 2017. 12. 10. 이전 1 2 3 다음