easy-install Questions
14
Solved
What's the best way to download a python package and its dependencies from pypi for offline installation on another machine? Is there any easy way to do this with pip or easy_install? I'm trying to...
Staggers asked 18/6, 2012 at 21:51
35
Solved
When I try to run app.py (Python 3.3, PyCrypto 2.6) my virtualenv keeps returning the error listed above. My import statement is just from Crypto.Cipher import AES. I looked for duplicates and you ...
Farmyard asked 27/10, 2013 at 20:39
31
Solved
I use this command in the shell to install PIL:
easy_install PIL
then I run python and type this: import PIL. But I get this error:
Traceback (most recent call last):
File "<console>", l...
Bedight asked 14/1, 2012 at 17:24
15
Solved
I have managed to get spyder installed and functioning on my mac but I want to add in a few modules that it doesn't include by default (mahotas and pymorph).
I installed both via easy_install in ...
Wine asked 23/5, 2012 at 23:8
1
I can successfully install egg for morfeusz2 through
python -m easy_install http://sgjp.pl/morfeusz/download/20181014/ubuntu-xenial/morfeusz2-0.4.0-py3.7-win-amd64.egg
However, all other depende...
Deviant asked 24/2, 2019 at 9:15
4
Solved
On Windows 7, I install pip with easy_install and want to install a lower version of pip.
I want to remove the old version, but have no idea how to completely remove the pip installed by easy_insta...
Sturgis asked 26/2, 2014 at 19:22
1
I want to bundle a local distribution .whl file inside another wheel file as a dependency.
dist_pkg1.whl (referenced wheel file,is a local file)
dist_pkg2.whl is dependent on dist_pkg1.whl, and I...
Aniela asked 12/3, 2015 at 7:47
29
I have a difficult time using pip to install almost anything. I'm new to coding, so I thought maybe this is something I've been doing wrong and have opted out to easy_install to get most of what I ...
Latreese asked 4/5, 2013 at 4:29
19
Is there a way to find all Python PyPI packages that were installed with easy_install or pip? I mean, excluding everything that was/is installed with the distributions tools (in this case apt-get o...
Propensity asked 6/7, 2011 at 18:0
12
Solved
I'm having difficulty installing lxml with easy_install on Ubuntu 11.
When I type $ easy_install lxml I get:
Searching for lxml
Reading http://pypi.python.org/simple/lxml/
Reading http://codespea...
Eldwun asked 28/6, 2011 at 10:8
11
Solved
I would like to install Python Pandas library (0.8.1) on Mac OS X 10.6.8. This library needs Numpy>=1.6.
I tried this
$ sudo easy_install pandas
Searching for pandas
Reading http://pypi.python.or...
Wicketkeeper asked 15/9, 2012 at 11:30
12
Solved
I'm trying to audit a Python project with a large number of dependencies and while I can manually look up each project's homepage/license terms, it seems like most OSS packages should already conta...
Antin asked 30/9, 2013 at 3:27
2
Solved
I already have MSVC++ 2010 Express installed, and my vcvarsall.bat file is at C:\Program Files\Microsoft Visual Studio 10.0\VC, which is in my system PATH. When I run easy_install, it can't find vc...
Rodmun asked 1/7, 2011 at 18:17
4
Solved
I installed BeautifulSoup with the command:
sudo easy_install BeautifulSoup4
I got the message:
Searching for BeautifulSoup4
Best match: beautifulsoup4 4.1.3
Processing beautifulsoup4-4.1.3-py2...
Rotow asked 23/4, 2013 at 13:41
12
Solved
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...
Berke asked 19/2, 2012 at 11:47
3
Solved
I'm a bit miffed by the python package installation process. Specifically, what's the difference between packages installed in the dist-packages directory and the site-packages directory?
Mancini asked 22/2, 2012 at 1:29
4
I installed psycopg2 in virtualenv using easy_install psycopg2. I did not see any errors and looks like installation went fine.. there is an egg file created in the site-packages dir for psycopg2.....
Spermophile asked 13/6, 2010 at 3:42
2
Solved
I'd like to make a Python package that installs a dependency by default unless the user specially signals they do not want that.
Example:
pip install package[no-django]
Does current pip and se...
Tinkling asked 29/4, 2016 at 14:43
14
Solved
After following this article: How do I install pip on Windows? on my Windows system using Enthought Canopy 64 Bit system, I cannot get pip or easy_install to work due to error:
pip install request...
Emikoemil asked 28/6, 2013 at 20:38
4
Solved
I am trying to install this package via PIP. It gives me the following error:
error: package directory 'RTbatch' does not exist
I find this weird, because the relevant setup.py does not mention ...
Secund asked 16/8, 2014 at 1:27
14
Solved
IDLE is throwing errors that and says tkinter can't be imported.
Is there a simple way to install tkinter via pip or easy_install?
There seem to be a lot of package names flying around for th...
Apothecium asked 18/11, 2013 at 9:43
7
Solved
I'm trying to uninstall all django packages in my superuser environment to ensure that all my webapp dependencies are installed to my virtualenv.
sudo su
sudo pip freeze | grep -E '^django-' | xarg...
Cordon asked 4/3, 2011 at 3:4
6
Solved
I have dependency_links in my setup.py:
...
dependency_links = ['http://github.com/robot-republic/python-s3/tarball/master.tar.gz#egg=python-s3'],
...
But it doesn't work. However install_requi...
Bran asked 20/9, 2012 at 18:17
6
I have just downloaded and installed the latest version of Python on my Windows 7 machine.
Python 2.7.3
Now I want to install a Twitter library I found online:
However when I try to run easy_in...
Lindyline asked 18/4, 2012 at 18:40
3
Solved
I have a Python library. Unfortunately I have not updated it to work with Python 3 yet.
In its setup.py, I added
install_requires=['python<3'],
My intent was to not allow this package to be ins...
Aesthetic asked 18/12, 2012 at 1:19
1 Next >
© 2022 - 2024 — McMap. All rights reserved.