Uncomplicatedly made a system-wide installation of flask and sqlalchemy

I accidentally did a system-wide flask installation and sqlalchemy. I "sudo pip install" released both of them, and now I am wondering how I can remove both from my system. I already have virtualenv configured, so I don’t want a jar or sqlalchemy attached to my system. I read that installing it directly can cause problems when working with different frameworks and different versions of the framework.

Is there a problem that I did a system-wide installation of these packages?

enter image description here

+4
source share
1 answer

sudo pip uninstall flask should do the trick. And yes, if it is installed globally, it can cause problems if you work with different versions of other packages.

+11
source

Source: https://habr.com/ru/post/1415862/


All Articles