From 85cda8fd74888d19719a36ef55df78c4612555a5 Mon Sep 17 00:00:00 2001 From: lkcl Date: Wed, 29 Jan 2020 23:22:54 +0000 Subject: [PATCH] --- HDL_workflow.mdwn | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/HDL_workflow.mdwn b/HDL_workflow.mdwn index 3340665da..ea18a93f3 100644 --- a/HDL_workflow.mdwn +++ b/HDL_workflow.mdwn @@ -287,9 +287,9 @@ library. In the meantime, sfpy can be built as follows: 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 @@ -299,11 +299,11 @@ library. In the meantime, sfpy can be built as follows: # 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) -- 2.30.2