〇Jupyter Labの画面
インストール手順
1.pipenvのインストール以下のコマンドを実行します
sudo apt-get -y install python3-pip python3-distutils python3-dev python3-testresources
sudo pip3 install --upgrade setuptools
sudo pip3 install pipenv
echo "export PIPENV_VENV_IN_PROJECT=true" >> ~/.bashrc
source ~/.bashrc
2. Jupyterのインストール
mkdir -p ~/jupyter
cd ~/jupyter
pipenv --python 3.8
pipenv install
pipenv install jupyterlab
sudo apt-get -y install libatlas-base-dev
pipenv install matplotlib
pipenv install pandas
mkdir -p ~/.jupyter
cat << EOF > ~/.jupyter/jupyter_notebook_config.py
c.JupyterApp.allow_remote_access = True
c.JupyterApp.ip = '0.0.0.0'
c.JupyterApp.open_browser = False
c.JupyterApp.port = 8080
c.JupyterApp.token = 'jupyter'
EOF
3. Jupyter Labをサービスとして登録
以下の場合は実行ユーザをubuntuユーザとしています。環境に合わせて、変更してください。
cat << EOF | sudo tee /etc/systemd/system/jupyter.service
[Unit]
Description=Jupyter
[Service]
Type=simple
ExecStart=/home/ubuntu/jupyter/.venv/bin/jupyter-lab
User=ubuntu
Group=ubuntu
WorkingDirectory=/home/ubuntu/jupyter
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl enable jupyter
sudo systemctl start jupyter
4. ブラウザで以下のアドレスにアクセスします。
http://<サーバ名またはIPアドレス>:8080/?token=jupyter
関連情報
・Jupyterに関する他の情報はこちらを参照してください。・Anaconda版は以下の記事を参照してください
Debian 10(Buster)/Ubuntu 20.04にJupyter Labをインストールする
0 件のコメント:
コメントを投稿