Skip to content

Commit

Permalink
update install script
Browse files Browse the repository at this point in the history
  • Loading branch information
matifali committed Sep 26, 2023
1 parent 9e1502a commit 368a3a0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions jupyterlab/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ if ! command -v jupyterlab & >/dev/null; then
# check if python3 pip is installed
if ! command -v pip3 & >/dev/null; then
echo "pip3 is not installed"
echo "Please install pip3 and try again"
exit 1
else
pip3 install jupyterlab
echo "jupyterlab installed!"
echo "Installing pip3..."
sudo apt-get update && sudo apt-get install python3-pip -y
fi
# install jupyterlab
pip3 install --user -q -y jupyterlab
echo "jupyterlab installed."
else
echo "jupyterlab is already installed."
fi
Expand Down

0 comments on commit 368a3a0

Please sign in to comment.