You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to PEP 668, installing packages using pip is not recommended anymore as it can break system packages, instead virtual environment is recommended.
Here are the steps using venv:
install venv and inside the cloned repo, make a virtual environment using python3 -m venv venv
set the source with source venv/bin/activate
download the dependencies with pip install -r requirements.txt
finally run it using sudo venv/bin/python3 -m src
also thank you for saving my keyboard :)
The text was updated successfully, but these errors were encountered:
Thanks for pointing that out. Unfortunately, I can't verify that this specific set of instructions will work for new users, as I'm not using Linux anymore.
If you want, you can submit a pull request that, I guess, changes the .sh file and the README, if that is all that's required. Once you confirm that the new instructions work, I can merge the pull request.
According to PEP 668, installing packages using
pip
is not recommended anymore as it can break system packages, instead virtual environment is recommended.Here are the steps using
venv
:venv
and inside the cloned repo, make a virtual environment usingpython3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
sudo venv/bin/python3 -m src
also thank you for saving my keyboard :)
The text was updated successfully, but these errors were encountered: