Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc: Corrected build instructions #1996

Merged
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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