I would consider looking at virtual environments. What the problem maybe here is that your python installation is looking in the wrong place for proxymanager
.
A virtual environment is a confined environment for a given project, so if you only needed certain packages for one project then you could just deal with this environment and install them to that environment. It makes developemnt and deploying projects a lot easier.
Try this, create a new folder and open a terminal window in this folder.
Run the following commands. It uses the package Venv which comes with Python.
Create the environment in a folder MyProj
MyProj>> python -m venv MyEnv
Activate the environment
MyProj>> cd MyEnv/Scripts
Scripts>> ./activate
You will know it is activated as your command prompt will now have the name of the environment in front of it. Now install your package.
(MyEnv)MyProj>> pip install proxy-manager
Ensure that it is installed in your Environment.
MyProj>> cd MyEnv/Lib/site-packages
site-packages>> ls
pip
pip-19.2.3.dist-info
pkg_resources
proxymanager ***** HERE IT IS *****
proxy_manager-0.0.6-py3.7.egg-info
setuptools
setuptools-41.2.0.dist-info
tests
__pycache__
easy_install.py
Now try to run your script and it should use the virtual environment you have created.