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

updated script to install without dependencies

parent 82fa1856
No related branches found
No related tags found
No related merge requests found
#!/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
python setup.py build --force
python setup.py sdist
pip install --ignore-installed --no-dependencies -v dist/binarycpython-$VERSION_NUMBER.tar.gz
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