Linked Questions
28 questions linked to/from How to install python modules without root access?
306 votes
52 answers
980k views
Could not install packages due to an EnvironmentError: [WinError 5] Access is denied: [duplicate]
When I type pip3 install --upgrade tensorflow-gpu in cmd, both administrative and normal I get this: Could not install packages due to an EnvironmentError: [WinError 5] Access is denied: 'c:\\users\\...
10 votes
3 answers
18k views
Install python package without root access [duplicate]
I want to install python package networkx in the server I use, and I do search before I ask this question, it says to use pip install --user networkx but it doesn't work and the linux error is Usage:...
0 votes
1 answer
7k views
Installing python module on remote server [duplicate]
I was wondering if there was a way to install and use BeautifulSoup (or any python module for that matter), which is not provided by my hosting service, without root privileges?
2 votes
1 answer
2k views
sudo pip: why, why not and alternatives [duplicate]
Going around I read a lot about how sudo pip is a very bad habit/solution. Some reasons people gave were: It could run malicious code. It will break permission structs. Sudo is used to install a ...
0 votes
2 answers
393 views
sudo or not sudo? [duplicate]
The ultimate goal is to run this single command from inside a shell script on a redhat machine. I've used the script for years on an ubuntu machine, but i have fewer privileges on redhat. I'll ...
2068 votes
49 answers
1.9m views
Download a single folder or directory from a GitHub repository
How can I download only a specific folder or directory from a remote Git repository hosted on GitHub? Say the example GitHub repository lives here: [email protected]:foobar/Test.git Its directory ...
99 votes
25 answers
262k views
Python - PIP install trouble shooting - PermissionError: [WinError 5] Access is denied [duplicate]
I get the following error when using PIP to either install new packages or even upgrade pip itself to the latest version. I am running pip on a windows 8.1 machine with Python 3.4. The message is ...
34 votes
12 answers
64k views
How to install virtualenv without using sudo?
I have easy_install and pip. I had many errors on my Linux Mint 12, I just re-installed it and I want to install everything from scratch again. This is one of the errors that I had. I received an ...
26 votes
2 answers
31k views
Android Market API - Python ImportError: No module named google.protobuf
Based on Python-API the requirements I have configured and installed the protocol buffers (as mentioned in http://worthynote.blogspot.com/2011/05/protobuf-compiler-on-mac.html ) and python 2.7. When I ...
20 votes
3 answers
63k views
matplotlib plot window won't appear
I'm using Python 2.7.3 in 64-bit. I installed pandas as well as matplotlib 1.1.1, both for 64-bit. Right now, none of my plots are showing. After attempting to plot from several different dataframes, ...
8 votes
2 answers
9k views
unable pip install mysqlclient & execute 'gcc': Permission denied
Forgive me if I ask something really simple I am setting up a Django app on a remote server, by Namecheap (no root access) and my server information: Apache Version: 2.4.38 MySQL Version: 10.1.38-...
1 vote
2 answers
2k views
Error while installing NLTK with Python3.6
I tried to run "pip install nltk" but getting so many error. Though I tried to install dependencies which are causing error, but they are not getting installed as well. Invalid requirement: 'nltk()' ...
1 vote
2 answers
2k views
Install a Python package that built for Windows and MacOS on Linux
I have currently used the python Package Larch (https://pypi.python.org/pypi/larch) on Windows. It works nicely and I am really impressed with its performance. To use the package with some large ...
1 vote
2 answers
1k views
How to install python packages in travis without sudo?
sudo is disabled in my travis script, so I can not execute 'pip install' to install python packages. Is there any other way that I can install python packages without sudo ? It still fails using the ...
3 votes
1 answer
3k views
pip install custom include path
On an ubuntu system on which I don't have sudo previleges, I wish to install a package via pip (matplotlib to be precise), but some source packages are not installed on the system (however the ...