Home
News
Forum
Wiki
Blog
Contents
Gallery
Movies
Downloads
About NSL
If you want to see English page, please click "English" Button at Left.
[
タイトル一覧
|
ページ一覧
|
新規
|
単語検索
|
最終更新
|
ヘルプ
]
Jupyter
をテンプレートにして作成
[
トップ
]
[ ]
開始行:
* Jupyter
- python で書かれた Webアプリケーションによる教育・開発用...
- see also : [[JupyterHub]] (マルチユーザ用 Jupiter サーバ)
- see also : [[Python]]
#br
** Jupyter Notebook
- クライアント・サーバモデルであるが,基本的に個人(シン...
#br
*** With Anaconda
- Python(pip) 環境で入れる方法と [[Anaconda]] 環境で入...
- 色々調べると [[Anaconda]] の方が使い易い様子.というか...
- (base) jupyter notebook --allow-root --ip=0.0.0.0
- (base) jupyter lab --allow-root --ip=0.0.0.0
#br
- その後,「データサインティスト以外は Anaconda は使用し...
-- Anacondaでは足りないパッケージがあって,結局 pip でそ...
#br
*** Install
**** anaconda
- anaconda を入れる
- anaconda 環境で conda を使ってインストールする
(base) # conda install -c conda-forge notebook
- C/C++ サポート
(base) # conda install -c conda-forge xeus-cling
(base) # pip install jupyter_c_kernel
(base) # install_c_kernel --sys-prefix
(base) # jupyter kernelspec list
- ''xeus-cling'' は anaconda 環境 (conda init) でないとイ...
- install_c_kernel で --sys-prefix を付けないと,C用のカ...
#br
**** pip を使用する.
yum install nodejs
yum install python3-pip
pip install numpy scipy matplotlib seaborn scikit-learn ...
pip install jupyter
pip install notebook
pip install jupyterlab
jupyter notebook --version
jupyter lab --versopn
#br
*** 設定
以下のコマンドで設定ファイル ''~/.jupyter/jupyter_noteboo...
(base) # jupyter notebook --generate-config
- リモートマシンからの接続を許可するには ''c.NotebookApp....
#br
*** 実行
(base) # jupyter notebook --allow-root --ip=0.0.0.0
- port: 8888
#br
*** サブコマンド
- jupyter [subcommand] を実行することと,jupyter-[subcomm...
$ \ls jupyter-*
jupyter-bundlerextension jupyter-kernel jupyt...
jupyter-contrib jupyter-kernelspec jupyt...
jupyter-contrib-nbextension jupyter-lab jupyt...
jupyter-extension jupyter-labextension jupyt...
** JupyterLab
*** 設定
- Jupyter Notebookの後継. WebアプリケーションによるIDE
- ''jupyterhub_config.py'' で ''c.Spawner.default_url = '...
- Install
(base) # conda install -c conda-forge jupyterlab -y
- アクセス中にクラシックノートブックにアクセスするには ''...
-- /lab に戻るには ''/user/{username}/lab'' にアクセス
#br
*** Command
**** Update
- conda update -c conda-forge jupyterlab
- jupyter labextension update --all
-- Node.js(nodejs >=12.0.0)が必要
#br
**** Version
- jupyter lab --version
#br
** 拡張機能
- https://www.hinomaruc.com/jupyter-notebook-five-extensi...
#br
*** nbextensions
- jupyter nbextension list
#br
**** nbextensions_configurator
- ブラウザのタブ上で nbextensions の切り替えができる.
- --user オプションを付けると個人環境にインストールされる
(jupyterhub) # pip install jupyter_nbextensions_configur...
(jupyterhub) # jupyter nbextensions_configurator enable ...
#br
**** contrib-nbextensions
- 拡張機能
- --user オプションを付けると個人環境にインストールされる
(jupyterhub) # pip install jupyter-contrib-nbextensions
(jupyterhub) # jupyter contrib nbextension install --user
#br
**** JupyterHub でのコンテナ設定
- Dockerfile
RUN /opt/conda/bin/conda install -c conda-forge jupyter...
RUN /opt/conda/bin/conda install -c conda-forge jupyter...
RUN /opt/conda/bin/jupyter nbextension install --sys-pr...
RUN /opt/conda/bin/jupyter nbextension enable --sys-pr...
RUN /opt/conda/bin/jupyter serverextension enable --sys...
#br
**** nbgrader
- https://github.com/jupyter/nbgrader
- Lab では動かんようだ.
#br
*** labextensions
- jupyter labextension list
#br
** ショートカットキー
- https://qiita.com/zawawahoge/items/baa2a5318df079c5f7e5
#br
** Accessibility
- https://jupyter-accessibility.readthedocs.io/en/latest/...
#br
*** JupyterLab
- https://github.com/Quansight-Labs/jupyter-a11y-mgmt/iss...
#br
*** Notebook
- [[Jupyter Notebook a11y toolbar>https://github.com/ucli...
- [[NVDA Browser Nav add-on>https://addons.nvda-project.o...
#br
終了行:
* Jupyter
- python で書かれた Webアプリケーションによる教育・開発用...
- see also : [[JupyterHub]] (マルチユーザ用 Jupiter サーバ)
- see also : [[Python]]
#br
** Jupyter Notebook
- クライアント・サーバモデルであるが,基本的に個人(シン...
#br
*** With Anaconda
- Python(pip) 環境で入れる方法と [[Anaconda]] 環境で入...
- 色々調べると [[Anaconda]] の方が使い易い様子.というか...
- (base) jupyter notebook --allow-root --ip=0.0.0.0
- (base) jupyter lab --allow-root --ip=0.0.0.0
#br
- その後,「データサインティスト以外は Anaconda は使用し...
-- Anacondaでは足りないパッケージがあって,結局 pip でそ...
#br
*** Install
**** anaconda
- anaconda を入れる
- anaconda 環境で conda を使ってインストールする
(base) # conda install -c conda-forge notebook
- C/C++ サポート
(base) # conda install -c conda-forge xeus-cling
(base) # pip install jupyter_c_kernel
(base) # install_c_kernel --sys-prefix
(base) # jupyter kernelspec list
- ''xeus-cling'' は anaconda 環境 (conda init) でないとイ...
- install_c_kernel で --sys-prefix を付けないと,C用のカ...
#br
**** pip を使用する.
yum install nodejs
yum install python3-pip
pip install numpy scipy matplotlib seaborn scikit-learn ...
pip install jupyter
pip install notebook
pip install jupyterlab
jupyter notebook --version
jupyter lab --versopn
#br
*** 設定
以下のコマンドで設定ファイル ''~/.jupyter/jupyter_noteboo...
(base) # jupyter notebook --generate-config
- リモートマシンからの接続を許可するには ''c.NotebookApp....
#br
*** 実行
(base) # jupyter notebook --allow-root --ip=0.0.0.0
- port: 8888
#br
*** サブコマンド
- jupyter [subcommand] を実行することと,jupyter-[subcomm...
$ \ls jupyter-*
jupyter-bundlerextension jupyter-kernel jupyt...
jupyter-contrib jupyter-kernelspec jupyt...
jupyter-contrib-nbextension jupyter-lab jupyt...
jupyter-extension jupyter-labextension jupyt...
** JupyterLab
*** 設定
- Jupyter Notebookの後継. WebアプリケーションによるIDE
- ''jupyterhub_config.py'' で ''c.Spawner.default_url = '...
- Install
(base) # conda install -c conda-forge jupyterlab -y
- アクセス中にクラシックノートブックにアクセスするには ''...
-- /lab に戻るには ''/user/{username}/lab'' にアクセス
#br
*** Command
**** Update
- conda update -c conda-forge jupyterlab
- jupyter labextension update --all
-- Node.js(nodejs >=12.0.0)が必要
#br
**** Version
- jupyter lab --version
#br
** 拡張機能
- https://www.hinomaruc.com/jupyter-notebook-five-extensi...
#br
*** nbextensions
- jupyter nbextension list
#br
**** nbextensions_configurator
- ブラウザのタブ上で nbextensions の切り替えができる.
- --user オプションを付けると個人環境にインストールされる
(jupyterhub) # pip install jupyter_nbextensions_configur...
(jupyterhub) # jupyter nbextensions_configurator enable ...
#br
**** contrib-nbextensions
- 拡張機能
- --user オプションを付けると個人環境にインストールされる
(jupyterhub) # pip install jupyter-contrib-nbextensions
(jupyterhub) # jupyter contrib nbextension install --user
#br
**** JupyterHub でのコンテナ設定
- Dockerfile
RUN /opt/conda/bin/conda install -c conda-forge jupyter...
RUN /opt/conda/bin/conda install -c conda-forge jupyter...
RUN /opt/conda/bin/jupyter nbextension install --sys-pr...
RUN /opt/conda/bin/jupyter nbextension enable --sys-pr...
RUN /opt/conda/bin/jupyter serverextension enable --sys...
#br
**** nbgrader
- https://github.com/jupyter/nbgrader
- Lab では動かんようだ.
#br
*** labextensions
- jupyter labextension list
#br
** ショートカットキー
- https://qiita.com/zawawahoge/items/baa2a5318df079c5f7e5
#br
** Accessibility
- https://jupyter-accessibility.readthedocs.io/en/latest/...
#br
*** JupyterLab
- https://github.com/Quansight-Labs/jupyter-a11y-mgmt/iss...
#br
*** Notebook
- [[Jupyter Notebook a11y toolbar>https://github.com/ucli...
- [[NVDA Browser Nav add-on>https://addons.nvda-project.o...
#br
ページ名:
サイト内 検索
高度な検索
ログイン
ユーザー名:
パスワード:
パスワード紛失
新規登録
サブ メニュー
新着情報
Books
リンク
サイトマップ
e-Learning
TUIS 認証局証明書
ミニカレンダー
2024年 10月
日
月
火
水
木
金
土
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<今日>
オンライン状況
19 人のユーザが現在オンラインです。 (5 人のユーザが xpwiki を参照しています。)
登録ユーザ: 0
ゲスト: 19
もっと...
アクセスカウンタ
今日 :
昨日 :
総計 :
Powered by XOOPS Cube 2.1© 2001-2006
XOOPS Cube Project
Design by
XoopsDesign.com