Fooocus
Fooocus copied to clipboard
Updates readme to use consistent python3 version
The same python version should be consistently used. Right now, we could be using a different python version to set up the venv but another python to install requirements and running the scripts.
While this is an uncommon scenario, but still might be relevant for a lot of scenarios.
Breakdown of the issue:
- Virtual Env was being created using
python3
but all the subsequent commands utilize thepython
- In most cases,
python
andpython3
could be referencing to different python versions. - We should be using the same python command we created the venv with i.e.
python3