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 package's name?
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 package's name?
If you are struggling to install the correct package when using pip install 'module', you could always download its corresponding wheel file (.whl extension) and then install this directly using pip. This has worked for me in various situations in the past.
Use virtualenv if you don't need both package for the same project. With virtualenv you can have different version of packages as well.
Another way maybe the site-packages as mentioned already.
https://virtualenv.pypa.io/en/stable/
http://docs.python-guide.org/en/latest/dev/virtualenvs/#lower-level-virtualenv