No admin rights and proxy (Windows 7) is a key here. I want to intall a python module in my user local file. Previously I got anaconda (Version 1.6.0) installed and I used the solution mentioned here and it worked like a charmed. Few days later my company installed Python 2.7.13 on my machine and when I try
pip install newmodule.zip
I got Errno 13: Permission denied Error. Apparently with this instruction the newmodule tries to be installed in: C:\\Program Files\\Python27\\site-packages\\
where new Python is installed and where I have no admin rights, so I got the error.
I have tried using:
conda install newmodule.bz2
and
conda install C:\myuser\path\for\python27\newmodule.bz2
and also the solutions mentioned here2 But still I have no success. Any hint to get a new python module installed under the charcateristics mentioned above? This is driving me crazy