(no commit message)
authorlkcl <lkcl@web>
Wed, 29 Jan 2020 23:22:54 +0000 (23:22 +0000)
committerIkiWiki <ikiwiki.info>
Wed, 29 Jan 2020 23:22:54 +0000 (23:22 +0000)
HDL_workflow.mdwn

index 3340665dafd0df0eef8ad2232f5ea815abd14759..ea18a93f354000ceaf338458a2bd15fd20ce0306 100644 (file)
@@ -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)