with pip, I install a script in editable mode
pip install -e .
ok, and uninstall with
pip uninstall myscript
ok, but if I try use the uninstalled script, I get
pkg_resources.DistributionNotFound: myscript==0.0.1
why the script is not fully removed ?