This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. `sudo apt update && sudo apt upgrade` | |
2. add the following lines to the end of `.bashrc` | |
```python3 | |
alias python='python3' | |
alias pip='pip3' | |
export PATH=/home/{username}/.local/bin:$PATH | |
``` | |
3. Follow [this guide](https://jupyterhub.readthedocs.io/en/latest/) to install JupyterHub. |