conda install libpython m2w64-toolchain -c msys2하고 pip install fbprophet 해주면 잘됨.
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') 해결완료.
위 탭에 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..
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 ..
/Applications/Python\ 3.6/Install\ Certificates.command 업데이트해준다.
가상환경용 폴더로 이동pip3 install virtualenvvirtualenv 가상환경명source ./가상환경명/bin/activate activate성공!
https://versusall.tistory.com/entry/Jupyter-Notebook-3-%EB%B3%80%EC%88%98-%EB%B3%B4%EA%B8%B0Variable-viewer
sudo pip3 list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install --user -U