jupyter
作成日時:2020年
注意:記事を作成してからだいぶ時間が経つため、以下の情報は役に立たないものも多いと思われます。備忘録として残しておきますが、私自身更新が必要だと感じています。最近はVisual Studio Code を使っているので、近い将来修正します。
公式サイト:https://jupyter.org/
公式ガイド [notebook]:https://jupyter-notebook.readthedocs.io/en/stable/
公式ガイド [Lab]:https://jupyterlab.readthedocs.io/en/latest/
Python Related Links
Python公式:https://www.python.org/
NumPy公式:https://numpy.org/
Pandas公式:https://pandas.pydata.org/pandas-docs/stable/index.html
OpenCV:https://opencv.org/
インストール
インストールは conda か pip で行う。以下は conda の例。
$ conda install -c conda-forge jupyterlab
参考
公式インストールページ:https://jupyter.org/install.html
jupyterLabは,インストール後に,ターミナル から以下のコマンドで起動する。
$ jupyter lab
Python Libraries
よく使うライブラリをインストールするためのファイルをまとめました。 Python のバージョンは3.5を使用しています。
# python3.5
conda install opencv=3.3.1
conda install h5py=2.8.0
conda install gdal=2.2.4
conda install tqdm=4.48.2
conda install pandas=0.23.4
conda install matplotlib=3.0.0
conda install pillow=5.2.0
conda install mpmath=1.0.0
conda install pyproj=1.9.5.1
conda install scikit-learn=0.20.0
conda install plotly=3.2.1
conda install ephem=3.7.6.0
conda install numba=0.39.0
# python All versions
conda install -c conda-forge jupyterlab
conda install -c conda-forge notebook
conda install -c conda-forge tifffile # tifファイルを扱うためのライブラリ
conda install -c conda-forge librosa # 音声や音楽など,音の分析につかうパッケージ
拡張機能
参照:公式 JupyterLab:https://jupyterlab.readthedocs.io/en/stable/user/extensions.html
拡張機能を利用する前に Node.js をインストールする。
$ conda install -c conda-forge nodejs
Extension Manager が出ない場合,以下を試す。
Go into advanced settings editor.
Open the Extension Manager section.
Add the entry “enabled”: true.
Save the settings.
If prompted whether you are sure, read the warning, and click “Enable” if you are still sure.
使用拡張機能
Variable Inspector
toc
statusbar
トラブルシューティング
ターミナル に「404 get /metrics 」メッセージが返って来た(2020/05/27)
以下のコマンドで,Anaconda の Jupyter をアップデートすることで解決できた
$ conda update jupyter