Closed brunoais closed 12 months ago
In:
git clone https://github.com/casualsnek/waydroid_script cd waydroid_script sudo python3 -m pip install -r requirements.txt
Instead of:
sudo python3 -m pip install -r requirements.txt
Use --user
--user
sudo python3 -m pip install --user -r requirements.txt
That way these packages are not changed inside /usr which can break a user's system. Even if a package still breaks a user's system, these installed packages can easily be removed with:
/usr
sudo python3 -m pip uninstall --user -r requirements.txt
That way the OS as a whole won't break (even if another software breaks but then it's just a matter of reinstalling the correct dependencies)
Just install the dependencies without sudo as per the instructions and use a venv.
Fixed in #118
In:
Instead of:
Use
--user
That way these packages are not changed inside
/usr
which can break a user's system. Even if a package still breaks a user's system, these installed packages can easily be removed with:That way the OS as a whole won't break (even if another software breaks but then it's just a matter of reinstalling the correct dependencies)