You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GIMP-ML/gimp-plugins/installGimpML.sh

46 lines
1.1 KiB
Bash

if [ ! -d "gimpenv" ]; then
echo "\n-----------Installing GIMP-ML-----------\n"
if [ "$(uname)" == "Linux" ]; then
if [[ $(lsb_release -rs) == "18.04" ]]; then #for ubuntu 18.04
sudo apt install python-minimal
alias python='python2'
elif [[ $(lsb_release -rs) == "20.04" ]]; then #for ubuntu 20.04
sudo apt install python2-minimal
wget https://bootstrap.pypa.io/get-pip.py
alias python='python2'
python get-pip.py
sudo apt-get install libpython2.7
elif [[ $(lsb_release -rs) == "10" ]]; then #for debian 10
wget https://bootstrap.pypa.io/get-pip.py
python get-pip.py
fi
fi
python -m pip install --user virtualenv
python -m virtualenv gimpenv
source gimpenv/bin/activate
python -m pip install torchvision
python -m pip install opencv-python
python -m pip install numpy
python -m pip install future
python -m pip install torch
python -m pip install scipy
python -m pip install typing
python -m pip install enum
python -m pip install pretrainedmodels
deactivate
echo "\n-----------Installed GIMP-ML------------\n"
else
echo "Environment already setup!"
fi