When installing a new python package with PIP, can I change the package name because there is another package with the same name?
Or, how can I change the existing p
I'm guessing that at least one of the packages you refer is not installed from https://pypi.org/ since they enforce unique names for the packages; this means you're installing that package from source, which means you also have the freedom of changing its name to whatever you want. You would do this by changing the setup.py file in the root of the offending package.