Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change Readme to use Venv #34

Open
athyfr opened this issue Mar 1, 2025 · 0 comments
Open

Change Readme to use Venv #34

athyfr opened this issue Mar 1, 2025 · 0 comments

Comments

@athyfr
Copy link

athyfr commented Mar 1, 2025

Popularly used Debian systems do not support installing programs using pip without a container.

I think it would be a good idea to update the README to reflect the common practice of using containers (using venv)

So this:

pip install -r requirements.txt
python3 trollstore.py

might be replaced by:

python3 -m venv trollstore-venv
source trollstore-venv/bin/activate
pip install -r requirements.txt
python3 trollstore.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant