|
|
|
|
|
by lmm
866 days ago
|
|
> can't you pretty much always just: > ... > pip install -r requirements.txt No. Usually that will pick up newer versions of the project's transitive dependencies, which will have breaking changes (because these days breaking changes in minor versions is what all the cool kids are doing). Since it's Python you won't find out until you hit the wrong codepath while using the program and get a runtime error. |
|