|
|
|
|
|
by Zancarius
3421 days ago
|
|
> I never install Python packages outside of a virtualenv. Global site-packages is all fun and games until someone loses an eye (or a dependency). I had a fun learning experience with a large Python package once while trying to mix and match dependency versions, simultaneously trying to avoid clobbering the ones already installed by pacman. Without a virtualenv, it quickly becomes impossible to guarantee you won't break something in the process of installing something else. I never made that mistake again. |
|