Linked Questions
28 questions linked to/from How to install python modules without root access?
1 vote
3 answers
686 views
Install python module on university computer
I am trying to install dropbox on my university host, and that requires python module docutils. So, after downloading the module and running python install.py I get the following output: running ...
2 votes
1 answer
1k views
installing pip without being root failing
I am trying to install pip3 on a remote Linux server to which I am not root. I have Python 2.7.15rc1 and Python 3.6.7, when I type: ls -la ~/.local/lib/python2.7/site-packages/ it returns the ...
2 votes
1 answer
1k views
Some Confusion about easy_install without Root Access
Preface I am so new to ssh/unix protocols that I hope I don't offend anybody. Context I am using the cores at my university, and do not have root access. Thus, when I install python modules, I ...
-3 votes
2 answers
1k views
Python : read excel in python with default module
I have Python 2.6.6 version and I don't have access to install new modules like pandas,xlrd,xlwt. I want to read Excel using Python . Is it possible to read Excel using Python with default modules ...
0 votes
1 answer
1k views
Python Elasticsearch urllib3 exception
I have to use python-elasticsearch library on a machine where I could only execute programs. I am trying to use elasticsearch module by appending sys.path as mentioned below. I am facing below issue. ...
1 vote
0 answers
1k views
Error in Installing pip
Trying to use Python to code games. First installed python version 3.7. The software was downloaded in users/admin/program files. Here I would like to clarify that this is on my personal PC where I ...
1 vote
0 answers
1k views
Could not install packages due to an EnvironmentError: When I install AWS CLI
python get-pip.py Collecting pip Downloading https://files.pythonhosted.org/packages/c2/d7/90f34cb0d83a6c5631cf ...
1 vote
1 answer
613 views
matplotlib.pyplot giving error 'ImportError: No module named Tkinter' on python 2.7
I'm using a remote machine for computation and data analysis. I don't have sudo access in this machine, for data analysis purposes I want to use python libraries such as vtk etc since pip is not ...
2 votes
1 answer
434 views
How do you install numpy when you're not a superuser?
I've downloaded the python binary file and then opened it in my home folder using tar xzvf Python-2.7.3.tgz This seems to work and when I run ~/Python-2.7.3/python it works great. However when I ...
0 votes
0 answers
519 views
Pip install "python setup.py egg_info" even inside of virtualenv
I've been getting this error consistently with random packages in my new installation. At first I thought it was just a problem with the OS, so I setup a virtualenv, yet even now I am still getting ...
0 votes
1 answer
210 views
Error while installing beautfulsoup on my mac os
I am trying to install BeautifulSoup on my macOS. While installing i m getting below. And also I tried with python setup.py install, but getting same error Please help me to resolve this bash-3.2$ ...
0 votes
0 answers
484 views
How do I resolve the permission denied error when trying to download a python library without sudo?
I'm Setting up a server using Nginx and Gunicorn to host a laboratory website built with Flask. This issue pertains to the lack of sudo privileges on the server issued by the school. When i try to ...
0 votes
1 answer
105 views
how to include updated library in python code without root access?
I am working remotely on university systems.I wanted to include python's matplotlib1.1 and university system has matplotlib 0.98. I did according to this post How to install python modules without ...