Skip to content

Commit

Permalink
Doc: Corrected build instructions (#1996)
Browse files Browse the repository at this point in the history
* fix-build-instructions

* set "pip3 install -e ."

* added require-hashes back in

Co-authored-by: Manolis Mandrapilias <[email protected]>
Co-authored-by: k9ert <[email protected]>
  • Loading branch information
3 people authored Dec 9, 2022
1 parent ef4012d commit c7bd49b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 1 addition & 2 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ pip3 install virtualenv
virtualenv --python=python3 .env
source .env/bin/activate
pip3 install -r requirements.txt --require-hashes
pip3 install -e .
python3 setup.py install # also compiles the babel translation-files
pip3 install -e . # this does not compile the babel translation-files
```

_note: invoking commands in the Windows PowerShell is slightly different:_
Expand Down
6 changes: 4 additions & 2 deletions utils/test-all-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
pip3 install virtualenv
virtualenv --python=python3 .env
source .env/bin/activate
# removing modules related to cryptoadvance is faster than doing rm -rf .env
pip3 freeze | grep ^cryptoadvance | xargs pip uninstall -y # the ^ means the line has to start with the search word
pip3 freeze | grep ^specterext | xargs pip uninstall -y # the ^ means the line has to start with the search word
pip3 install -r requirements.txt --require-hashes
pip3 install -e .
python3 setup.py install # also compiles the babel translation-files
pip3 install -e . # this does not compile the babel translation-files


pip3 install -r test_requirements.txt
Expand Down

0 comments on commit c7bd49b

Please sign in to comment.