0

I'm on windows and want to use python and a few packages, however, due to our policies it is not possible to have admin rights and any fetch requests done by pip (or any other package manager I'd assume) are being blocked.

So far I've downloaded Python (3.9.6) and "installed" it by manually unzipping and setting the PATH env variable. I know that packages can be manually downloaded and installed as well using setup.py, however I also do not have setuptools, so is there any way to manually install that?

1 Answers1

0

pip doesn't require admin rights just use it with --user.If you want to avoid using pip here the steps

if the folder has setup.py in it

  1. Download the packages and uncompress if needed open folder

  2. holding shift click open with cmd or powershell

  3. run python setup.py install --user or python3 setup.py install --user

if not present setup.py check the install documentation provided by module.