From a123fe0b5704f04240a1609eebb9dcbf66267e1a Mon Sep 17 00:00:00 2001 From: dh00601 <dh00601@surrey.ac.uk> Date: Mon, 1 Nov 2021 14:06:04 +0000 Subject: [PATCH] updated pip install scripts to actually work --- install_with_pip.sh | 2 +- install_with_pip_without_dependencies.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install_with_pip.sh b/install_with_pip.sh index 03a283b85..01b88a2af 100755 --- a/install_with_pip.sh +++ b/install_with_pip.sh @@ -9,4 +9,4 @@ echo "installing binarcpython version $VERSION_NUMBER" # pip uninstall binarycpython # python setup.py build --force # python setup.py sdist -pip install -v -e . \ No newline at end of file +pip install -v . \ No newline at end of file diff --git a/install_with_pip_without_dependencies.sh b/install_with_pip_without_dependencies.sh index d9d847b95..798c5c952 100755 --- a/install_with_pip_without_dependencies.sh +++ b/install_with_pip_without_dependencies.sh @@ -9,4 +9,4 @@ echo "installing binarcpython version $VERSION_NUMBER" # 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 +pip install --no-dependencies -v . -- GitLab