Reputation: 640
I am trying to install the python package us
without admin privileges.
I have tried pip install us
in Anaconda prompt to no avail.
I have also tried the suggestion listed here: Install python modules on windows without admin rights--didn't work.
I have now downloaded the files from the site https://pypi.org/project/us/ to my desktop and need to know how to install the package from here.
I am using the Spyder IDE and Python 3.7. Is there a way to do this?
Thanks.
Upvotes: 0
Views: 2912
Reputation: 91
Since you have downloaded the files, Extract them in a folder and normally a setup.py file must be include, open command prompt in that folder and run :
python setup.py install
Upvotes: 1
Reputation: 76
I do this on the daily and if I understand what you are saying you are doing it right. If pip install us
in command prompt or shell (if you are using Windows OS) doesn't work try py -m pip install us
. Make sure you are using command prompt and not using your IDEz
As you can see it worked first try for me.
Upvotes: 1