cd ..
# install dependencies
- python -m venv .env
+ python3 -m venv .env
. .env/bin/activate
- pip install --upgrade -r requirements.txt
+ pip3 install --upgrade -r requirements.txt
# build
make lib -j8
# install
deactivate # deactivates venv, optional
- pip install dist/sfpy*.whl
+ pip3 install dist/sfpy*.whl
You can test your installation by doing the following:
- python
+ python3
>>> from sfpy import *
>>> Posit8(1.3)