pull/45/head
Muhammad Atif Ali 2 years ago
parent e7744927de
commit d8da0514c7
No known key found for this signature in database

@ -5,10 +5,10 @@ BOLD='\033[0;1m'
echo "$${BOLD}Installing jupyterlab!\n"
# check if jupyterlab is installed
if ! command -v jupyterlab & >/dev/null; then
if ! command -v jupyterlab > /dev/null 2>&1; then
# install jupyterlab
# check if python3 pip is installed
if ! command -v pip3 & >/dev/null; then
if ! command -v pip3 > /dev/null 2>&1; then
echo "pip3 is not installed"
echo "Please install pip3 in your Dockerfile/VM image before running this script"
exit 1

Loading…
Cancel
Save