troggle-unchained/venv-trog.sh

121 lines
3.6 KiB
Bash
Raw Normal View History

2022-03-02 23:18:39 +00:00
#!/bin/bash
2022-10-27 16:29:11 +01:00
# footled lots to make this work with python 3.10 and WSL1 on Ubuntu 22.04
2022-03-02 23:18:39 +00:00
# Run this in a terminal in the troggle directory: 'bash venv-trog.sh'
2022-10-27 16:29:11 +01:00
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.
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
2022-10-27 16:29:11 +01:00
# NOW we set up troggle
2022-10-27 17:23:41 +01:00
VENAME=p10d5 # python3.10 and django 3.2
echo "** You are logged in as `id -u -n`"
echo "The 50MB pip cache will be in /home/`id -u -n`/.cache/"
echo "The 150MB venv will created in /home/`id -u -n`/$VENAME/"
2022-10-27 16:29:11 +01:00
TROGDIR=$(cd $(dirname $0) && pwd)
2022-10-27 17:23:41 +01:00
echo "-- Troggle folder (this script location): ${TROGDIR}"
2022-03-02 23:18:39 +00:00
if [ -d requirements.txt ]; then
2022-10-27 16:29:11 +01:00
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
2022-10-27 16:29:11 +01:00
# NOW set up link from expo user folder
# needed for WSL2
echo Creating links from Linux filesystem user
# These links only need making once, for many venv
cd ~
2022-03-02 23:18:39 +00:00
if [ ! -d $VENAME ]; then
2022-10-27 16:29:11 +01:00
echo "## Creating venv $VENAME. (If this fails with a pip error, you need to use a Ubuntu window)"
python -m venv $VENAME
2022-03-02 23:18:39 +00:00
else
2022-10-27 16:29:11 +01:00
echo "## /$VENAME/ already exists ! Delete it first."
2022-03-02 23:18:39 +00:00
exit 1
fi
# Activate the virtual env and see what the default packages are
echo "### Activating $VENAME"
2022-10-27 16:29:11 +01:00
2022-03-02 23:18:39 +00:00
cd $VENAME
2022-10-27 16:29:11 +01:00
echo "-- now in: ${PWD}"
2022-03-02 23:18:39 +00:00
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-10-27 16:29:11 +01:00
2022-10-27 17:23:41 +01:00
# update local version of setuptools, more recent than OS version, needed for packages without wheels
2022-10-27 16:29:11 +01:00
2022-06-25 19:34:42 +01:00
echo "### installing later version of pip inside $VENAME"
python -m pip install --upgrade pip
2022-10-27 16:29:11 +01:00
python -m pip install --upgrade setuptools
PIP=pip
2022-03-02 23:18:39 +00:00
$PIP list > original-pip.list
$PIP freeze >original.txt
2022-10-27 17:23:41 +01:00
# we are in /home/$USER/$VENAME/
2022-10-27 16:29:11 +01:00
ln -s ${TROGDIR} troggle
ln -s ${TROGDIR}/../expoweb expoweb
ln -s ${TROGDIR}/../loser loser
ln -s ${TROGDIR}/../drawings drawings
ln -s ${TROGDIR}/../expofiles expofiles
2022-10-27 17:23:41 +01:00
echo "### links to expoweb, troggle etc. complete"
echo "###"
echo "### now installing ${TROGDIR}/requirements.txt"
echo "###"
2022-10-27 16:29:11 +01:00
$PIP install -r ${TROGDIR}/requirements.txt
2022-03-02 23:18:39 +00:00
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
2022-10-27 17:23:41 +01:00
# Now find out what we actually installed by subtracting the stuff venv installed anyway
2022-03-02 23:18:39 +00:00
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
2022-10-27 16:29:11 +01:00
mv requirements.txt $REQ
2022-03-02 23:18:39 +00:00
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
2022-10-27 16:29:11 +01:00
2022-03-02 23:18:39 +00:00
python --version
2022-10-27 16:29:11 +01:00
echo "Django version:`django-admin --version`"
2022-03-02 23:18:39 +00:00
echo "### Now do
2022-10-27 17:23:41 +01:00
'[sudo service mysql start]'
'[sudo service mariadb restart]'
'[sudo mysql_secure_installation]'
2022-10-27 16:29:11 +01:00
'cd ~/$VENAME'
2022-03-02 23:18:39 +00:00
'source bin/activate'
'cd troggle'
2022-10-27 17:23:41 +01:00
'django-admin check'
2022-06-25 19:34:42 +01:00
'python manage.py check'
2022-10-27 17:23:41 +01:00
'python manage.py test -v 2'
'./pre-run.sh'
'python databaseReset.py reset $VENAME'
'python manage.py runserver 0.0.0.0:8000 (and allow access when the firewall window pops up)'
"