dxsim / amazon-linux-2-jupyterlab-server

Short guide to running a jupyterlab server immediately with the amazon-linux-2 ec2 image

Home Page:https://medium.com/@danielsimxien/aws-free-tier-amazon-linux-2-ec2-setup-d51f44dec1f7

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

amazon-linux-2-jupyterlab-server

Short guide to running a jupyterlab server immediately with the amazon-linux-2 ec2 image

  1. Install python3.8 on your ec2 server
sudo amazon-linux-extras install python3.8
python3.8 -m pip install --user virtualenv
python3.8 -m virtualenv -p python3.8 venv
source venv/bin/activate
pip install jupyterlab
deactivate
  1. Configure your server password
jupyter server --generate-config
jupyter server password # Enter and verify your password here
nano .jupyter/jupyter_server_config.py'
c.JupyterApp.config_file_name = 'jupyter_notebook_config.json'
  1. Run your JupyterLab server!
screen -dm bash -c './start_jupyterlab.sh'

About

Short guide to running a jupyterlab server immediately with the amazon-linux-2 ec2 image

https://medium.com/@danielsimxien/aws-free-tier-amazon-linux-2-ec2-setup-d51f44dec1f7

License:GNU General Public License v3.0


Languages

Language:Shell 100.0%