That might work but it is recommended to not install packages outside of virtual environments as it might lead to conflicts between versions across different projects.
- 0 Posts
- 3 Comments
Joined 1 year ago
Cake day: March 8th, 2025
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
You can run it in an virtual environment:
python -m venv someproject
source someproject/bin/activate
Then you can run the commands in the git README you posted.
pip …
Will will install the include files needed within this virtual environment. Alternatively you can do
apt install …
Instead of using pip. Your python script should run within the virtual environment.


I did not know that, I assumed they wrote pipx to mean pip/pip3. Thanks for pointing that out.