biobootloader / wolverine

MIT License
5.22k stars 516 forks source link

reorder venv commands in README #7

Closed epylar closed 1 year ago

epylar commented 1 year ago

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 1 year ago

ah, yes! thanks!