init learning cats
This commit is contained in:
13
install.sh
Executable file
13
install.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
if test ! -d ".env"; then
|
||||
echo "Erzeuge virtuelle Umgebung ...."
|
||||
virtualenv .env
|
||||
fi
|
||||
echo "Aktiviere virtuelle Python Umgebung ..."
|
||||
. .env/bin/activate
|
||||
echo "Installiere requirements ..."
|
||||
pip install --upgrade pip
|
||||
pip install -r requirements.txt
|
||||
if test ! -e "config.cfg" -a -e "config.cfg.sample"; then
|
||||
cp config.cfg.sample config.cfg
|
||||
fi
|
||||
Reference in New Issue
Block a user