-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup-jupyter.sh
executable file
·38 lines (30 loc) · 1.07 KB
/
setup-jupyter.sh
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
32
33
34
35
36
37
38
#!/bin/bash
###############################################################
# Unofficial 'Bash strict mode' #
# http://redsymbol.net/articles/unofficial-bash-strict-mode/ #
###############################################################
set -euo pipefail
IFS=$'\n\t'
###############################################################
##########################################################
### Install virtualenv ###
##########################################################
echo "Installing virtualenv..."
sudo apt install -y virtualenv
echo ""
#######################
### Install Jupyter ###
#######################
cd
# Create virtual env
echo "Installing Jupyter: creating virtualenv..."
rm -rf .jupyter_venv || true
virtualenv .jupyter_venv -p python3
source .jupyter_venv/bin/activate
# Inside the virtual env: Install jupyter
echo "virtualenv: pip install jupyter jupyterlab..."
pip3 install jupyter jupyterlab
# Inside the virtual env: Install .NET kernel
echo "virtualenv: install .NET kernel..."
dotnet interactive jupyter install
deactivate