- On my Python 3.7.2, I need the package patsy 0.5.1
- -pip install patsy (led to 0.5.1) being installed
- The following code still shows patsy 0.5.0
import patsy
patsy.__version__
- pip uninstall patsy AND pip uninstall patsy==0.5.0 lead to only 0.5.1 being uninstalled
Is this a problem specific to this package? Or is there a generally accepted safe way to do this? Are cleanups like this usually necessary?
Is manually deleting any patsy 0.5.0 folders not advised?