-
Notifications
You must be signed in to change notification settings - Fork 0
/
check_if_rogue_jupyterlab_is_installed.sh
executable file
·35 lines (33 loc) · 1.42 KB
/
check_if_rogue_jupyterlab_is_installed.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
#!/bin/bash
# Copyright Peter Gagarinov.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# set -e
pip_list_jupyter_ver_output="$(pip list|grep 'jupyterlab.*3.0.12')"
if [ -z "$pip_list_jupyter_ver_output" ]; then
pip_list_jupyter_output="$(pip list|grep 'jupyterlab\ ')"
echo "!!!!>>>>A rogue version of jupyterlab was found and needs to be removed: '$pip_list_jupyter_output' <<<<!!!!"
echo "Please try to do it via 'pip uninstall jupyterlab', 'pip uninstall jupyterlab-server"
echo "Or delete the following folders manually"
echo "rm $HOME/.local/bin/jlpm
rm -$HOME/.local/bin/jupyter-lab
rm $HOME/.local/bin/jupyter-labextension
rm $HOME/.local/bin/jupyter-labhub
rm $HOME/.local/etc/jupyter/jupyter_notebook_config.d/jupyterlab.json
rm -rf $HOME/.local/lib/python3.8/site-packages/jupyter*
rm -rf $HOME/.local/share/jupyter/"
exit 1
else
echo "$pip_list_jupyter_ver_output is installed"
fi
jupyter-lab --version