I\'m trying to install packages from within Pycharm in Windows 10. I am behind a proxy, so I have set up the proxy information as well as my login details and my connection
There might be a couple of reasons for your issue. The first that come to mind are:
did you try to go to Python3 executable path and try the same command from CMD ?
pip3.exe install --proxy=https://username:password@proxy:port packageName
you can also try the same command as above, but a bit changed:
pip3.exe install packageName --proxy=https://username:password@proxy:port
are you sure the credentials are ok ? (apparently the connection was successfull, I just saw the first image)
I'm using the latter command and it works fine with Python 3.5.x on Windows.