Skip to content
Snippets Groups Projects
Commit 0b690aee authored by dh00601's avatar dh00601
Browse files

removed the remove part from the comand

parent e397d338
No related branches found
No related tags found
No related merge requests found
Pipeline #32400 passed
...@@ -51,7 +51,7 @@ For this it is best to set up a virtual environment. Activate the virtualenviron ...@@ -51,7 +51,7 @@ For this it is best to set up a virtual environment. Activate the virtualenviron
Then run: 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 && 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. 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 ...@@ -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: 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 #### After installation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment