Thief of Wealth
fbprophet install error?
개발/Python 2019. 7. 15. 11:32

conda install libpython m2w64-toolchain -c msys2하고 pip install fbprophet 해주면 잘됨.

matplotlib에서 한글깨짐 해결하는 법
개발/Python 2019. 7. 11. 16:54

import platformfrom matplotlib import font_manager, rcplt.rcParams['axes.unicode_minus'] = False if( platform.system() =='Darwin' ): rc( 'font', family='AppleGothic' )elif( platform.system() == 'Windows' ): path='c:/Windows/Fonts/malgun.ttf' font_name= font_manager.FontProperties( fname=path ).get_name() rc('font',family=font_name)else: print('error') 해결완료.

Jupyter Lab 테마 바꾸기
개발/Python 2019. 7. 11. 01:03

위 탭에 Setting -> Advanced Setting Editor (Ctrl+,) User Preference를 { // Theme // @jupyterlab/apputils-extension:themes // Theme manager settings. // ************************************* // Selected Theme // Application-level visual styling theme //"theme": "JupyterLab Light", "theme": "JupyterLab Dark", // Scrollbar Theming // Enable/disable styling of the application scrollbars "theme-scrollbar..

Jupyter notebook 꿀팁
개발/Python 2019. 7. 11. 00:58

https://towardsdatascience.com/how-to-effortlessly-optimize-jupyter-notebooks-e864162a06eehttps://towardsdatascience.com/jupyter-notebook-hints-1f26b08429adhttps://github.com/dunovank/jupyter-themes 매우중요! https://www.endtoend.ai/blog/jupyter-notebook-extensions-to-enhance-your-efficiency/ 설치하고 http://localhost:8888/nbextensions에서 활성화시켜주자! 테마변경부터 extension까지 모두 다있다. 예시 First, go to your terminal ..

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성공!

jupyter notebook Variable Viewer
개발/Python 2019. 6. 29. 13:11

https://versusall.tistory.com/entry/Jupyter-Notebook-3-%EB%B3%80%EC%88%98-%EB%B3%B4%EA%B8%B0Variable-viewer

python 모든 패키지 upgrade
개발/Python 2019. 6. 28. 17:09

sudo pip3 list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install --user -U

profile on loading

Loading...