From 2c8ea08a762ffe102992cc7c86e9af24f93436ee Mon Sep 17 00:00:00 2001
From: dh00601 <dh00601@surrey.ac.uk>
Date: Mon, 25 Oct 2021 22:52:06 +0100
Subject: [PATCH] added script to install with pip

---
 install_with_pip.sh | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100755 install_with_pip.sh

diff --git a/install_with_pip.sh b/install_with_pip.sh
new file mode 100755
index 000000000..bbea24cdf
--- /dev/null
+++ b/install_with_pip.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 -e .
\ No newline at end of file
-- 
GitLab