diff --git a/install_without_dependencies.sh b/install_without_dependencies.sh
index 2a7775c07c0991eb163c2e96bfa0a9217211ec87..ae91f044267867b8afca156b9f6aa6f7944e97e4 100755
--- a/install_without_dependencies.sh
+++ b/install_without_dependencies.sh
@@ -1,12 +1,18 @@
 #!/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
+# Clean up all the stuff from before
+python setup.py clean --all
+
+# Go into a directory that doesnt contain 'binarycpython' so pip will uninstall the one in the venv, not the local one.
+cd src
+pip uninstall -y binarycpython
+cd ../
+
+# Create build, sdist and install it into the venv
 python setup.py build --force
 python setup.py sdist
 pip install --ignore-installed --no-dependencies -v dist/binarycpython-$VERSION_NUMBER.tar.gz