Skip to content
Snippets Groups Projects
Commit 1da11490 authored by dh00601's avatar dh00601
Browse files

Added script to install with pip with dependencies

parent a73cfbb5
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# Script to install binarycpython in the current venv
# Script to install binarycpython in the current venv using the pip commands
VERSION_NUMBER=$(cat "VERSION")
echo "installing binarcpython version $VERSION_NUMBER"
......@@ -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 -v -e .
\ No newline at end of file
#!/bin/bash
# Script to install binarycpython in the current venv using the pip commands
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
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