mirror of
https://github.com/cmur2/python-bme680.git
synced 2024-11-13 22:56:21 +01:00
25 lines
385 B
Bash
Executable File
25 lines
385 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PACKAGE="bme680"
|
|
|
|
printf "BME680 Python Library: Uninstaller\n\n"
|
|
|
|
if [ $(id -u) -ne 0 ]; then
|
|
printf "Script must be run as root. Try 'sudo ./uninstall.sh'\n"
|
|
exit 1
|
|
fi
|
|
|
|
cd library
|
|
|
|
printf "Unnstalling for Python 2..\n"
|
|
pip uninstall $PACKAGE
|
|
|
|
if [ -f "/usr/bin/pip3" ]; then
|
|
printf "Uninstalling for Python 3..\n"
|
|
pip3 uninstall $PACKAGE
|
|
fi
|
|
|
|
cd ..
|
|
|
|
printf "Done!\n"
|