|
|
|
|
|
by wongarsu
227 days ago
|
|
If you can install it with `pip install program-name` it's usually packaged well enough to just work. But if it's a random github repository with a requirements.txt with no or very few version numbers chances are that just running `pip install -r requirements.txt` will lead you down an hour+ rabbit hole of downgrading both your venv's python version and various packages until you get a combination that is close enough to the author`s venv to actually work Usually happens to me when I find code for some research paper. Even something that's just three months old can be a real pain to get running |
|