2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 15:21:52 +00:00
troggle/venv-trog.sh

128 lines
3.8 KiB
Bash
Raw Normal View History

2022-03-02 23:18:39 +00:00
#!/bin/bash
# Run this in a terminal in the troggle directory: 'bash venv-trog.sh'
echo 'Run this in a terminal in the troggle directory: "bash venv-trog.sh"'
2022-03-02 23:18:39 +00:00
2022-06-25 17:28:01 +01:00
# Expects an Ubuntu 22.04 relatively clean install.
# Running using SQLite version 3.37.2 2022-01-06 13:25:41
# Many permissions conflicts under WSL2 mean more sudo needed
2022-03-02 23:18:39 +00:00
# If you have not already installed these on your clean Ubuntu install DO THIS FIRST
2022-06-25 17:28:01 +01:00
# use the script os-trog.sh
# python --version : ensure python is an alias for python3 not python2.7
2022-03-02 23:18:39 +00:00
# sudo apt install sqlite3
# sudo apt install python3-pip # this installs a shed-load of other stuff: binutils etc.
2022-06-25 17:28:01 +01:00
# sudo apt install python3.10
# sudo apt install python3.10-venv
# sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.10 1
# on WSL there is an oddity that creating a venv trips over a PowerShell permissions issue
# and of course:
# sudo apt update
# sudo apt dist-upgrade
2022-03-02 23:18:39 +00:00
# On a clean debian 11 (bullseye) installation with Xfce & ssh,
# as debian does not install everything that ubuntu does, you need:
# sudo usermod -a -G sudo expo # to put expo in sudoers group, re-login required
# sudo apt install python3.10
# sudo apt install python3.10-pip
# sudo apt install python3.10-venv
# sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.10 1
#
2022-03-02 23:18:39 +00:00
# copy this file and requirements.txt into the directory above where you want to install the VENV
2022-06-25 17:28:01 +01:00
VENAME=p10d3 # python3.10 and django 3.2
2022-03-02 23:18:39 +00:00
if [ -d requirements.txt ]; then
echo "No requirements.txt found. Copy it from your most recent installation."
2022-03-02 23:18:39 +00:00
exit 1
fi
python --version
# LOOK HERE: we go up a level so that /$VENAME is parallel to /troggle
2022-03-02 23:18:39 +00:00
cd ..
if [ ! -d $VENAME ]; then
echo "### Creating venv $VENAME"
python -m venv $VENAME
2022-03-02 23:18:39 +00:00
else
echo "/$VENAME/ already exists ! Delete it first."
exit 1
fi
# Activate the virtual env and see what the default packages are
echo "### Activating $VENAME"
cd $VENAME
source bin/activate
echo "### Activated."
# update local version of pip, more recent than OS version
# debian bullseye installs pip 20.3.4 which barfs, we want >22.0.3
2022-06-25 19:34:42 +01:00
echo "### installing later version of pip inside $VENAME"
python -m pip install --upgrade pip
PIP=pip
2022-03-02 23:18:39 +00:00
$PIP list > original-pip.list
$PIP freeze >original.txt
ln -s ../expoweb expoweb
ln -s ../troggle troggle
ln -s ../loser loser
ln -s ../drawings drawings
ln -s ../expofiles expofiles
2022-03-02 23:18:39 +00:00
# Package Version
# ------------- ----------
echo '### links to expoweb, troggle etc. complete'
echo '###'
echo '### now installing requirements.txt'
echo '###'
$PIP install -r troggle/requirements.txt
echo '### install from requirements.txt completed.'
echo '### '
$PIP freeze > requirements.txt
# so that we can track requirements more easily with git
# because we do not install these with pip, but they are listed by the freeze command
# Now find out what we actually installed by subtracting the stuff virtualenv installed anyway
sort original.txt > 1
sort requirements.txt >2
comm -3 1 2 --check-order | awk '{ print $1}'>fresh-requirements.txt
rm 1
rm 2
cp requirements.txt requirements-$VENAME.txt
cp requirements-$VENAME.txt troggle/requirements-$VENAME.txt
$PIP list > installed-pip.list
$PIP list -o > installed-pip-o.list
REQ=installation-record
mkdir $REQ
mv requirements-$VENAME.txt $REQ
mv original.txt $REQ
#mv requirements.txt $REQ
mv original-pip.list $REQ
mv installed-pip.list $REQ
mv installed-pip-o.list $REQ
cp fresh-requirements.txt ../requirements.txt
mv fresh-requirements.txt $REQ
cp troggle/`basename "$0"` $REQ
python --version
echo "Django version:"
django-admin --version
echo "### Now do
2022-06-25 19:34:42 +01:00
'sudo service mysql start'
'sudo service mariadb restart'
'sudo mysql_secure_installation'
2022-03-02 23:18:39 +00:00
'cd ../$VENAME'
'source bin/activate'
'cd troggle'
2022-06-25 19:34:42 +01:00
'python manage.py check'
2022-03-02 23:18:39 +00:00
'python manage.py test -v 3' "