reorder venv commands in README
epylar opened this issue · 1 comments
epylar commented
Hello,
I noticed an issue in the README file. The current instructions are:
python3 -m venv venv
pip install -r requirements.txt
source venv/bin/activate
I believe the correct order should be:
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
biobootloader commented
ah, yes! thanks!