From be9c5fb2458d1ca849b82d2c723cf1107862a6ad Mon Sep 17 00:00:00 2001 From: dh00601 <dh00601@surrey.ac.uk> Date: Sat, 16 Oct 2021 17:06:06 +0100 Subject: [PATCH] updated script to install without dependencies --- install_without_dependencies.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 install_without_dependencies.sh diff --git a/install_without_dependencies.sh b/install_without_dependencies.sh new file mode 100755 index 000000000..2a7775c07 --- /dev/null +++ b/install_without_dependencies.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# Script to install binarycpython in the current venv + +VERSION_NUMBER=$(cat "VERSION") +echo "installing binarcpython version $VERSION_NUMBER" + +python setup.py clean +pip uninstall binarycpython +python setup.py build --force +python setup.py sdist +pip install --ignore-installed --no-dependencies -v dist/binarycpython-$VERSION_NUMBER.tar.gz -- GitLab