From 0b690aee7f8c7a37c059c4efdc3c17b3433240fc Mon Sep 17 00:00:00 2001
From: dh00601 <dh00601@surrey.ac.uk>
Date: Sun, 19 Sep 2021 21:21:11 +0100
Subject: [PATCH] removed the remove part from the comand

---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index b13ddb713..38be02661 100644
--- a/README.md
+++ b/README.md
@@ -51,7 +51,7 @@ For this it is best to set up a virtual environment. Activate the virtualenviron
 Then run:
 ```
 python setup.py clean && python setup.py build --force && python setup.py sdist && pip install -v dist/binarycpython-<version of this package>.tar.gz
-python setup.py clean && pip uninstall binarycpython && rm dist/* && python setup.py build --force && python setup.py sdist && pip install -v dist/binarycpython-<version of this package>.tar.gz
+python setup.py clean && pip uninstall binarycpython && python setup.py build --force && python setup.py sdist && pip install -v dist/binarycpython-<version of this package>.tar.gz
 ```
 This will clean the build directory, remove binarycpython from the venv, remove the dist packages, and then rebuilding and reinstalling the package. You can find the version of this package in setup.py.
 
@@ -59,7 +59,7 @@ This will install this package into the virtual environment. Making changes to t
 
 If this is not the first time you install the package, but rather rebuild it because you make changes in either binary_c or binarycpython, you should ignore the currently installed version, and also skip installing the dependencies again, by executing the following command:
 ```
-python setup.py clean && pip uninstall binarycpython && rm dist/* && python setup.py build --force && python setup.py sdist && pip install --ignore-installed --no-dependencies -v dist/binarycpython-<version of this package>.tar.gz
+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 of this package>.tar.gz
 ```
 
 #### After installation
-- 
GitLab