easy-install

install scipy on windows with easy_install

此生再无相见时 提交于 2019-12-03 20:25:28
问题 I installed python 2.7 64bit on Windows 7. I later realized that my windows is 32 bit... Python 2.7.6 (default, Nov 10 2013, 19:24:24) [MSC v.1500 64 bit (AMD64)] on win 32 Anyway, it is still working! I also added the python installation directory in the windows path. Than i installed easy_install using ez_setup script. And this worked, as well C:\Users\Myname>easy_install error: No urls, filenames, or requirements specified (see --help) But then I am not able to install modules as Matplolib

How to cleanly remove pip that is installed by using easy_install?

我怕爱的太早我们不能终老 提交于 2019-12-03 17:02:45
问题 If I used sudo easy_install pip on my OS X Lion 10.7.4, how do I cleanly remove it? After the installation, I also did pip install --upgrade setuptools Here is the output: mac:~ usr$ sudo easy_install pip Password: Searching for pip Reading http://pypi.python.org/simple/pip/ Best match: pip 1.5.4 Downloading https://pypi.python.org/packages/source/p/pip/pip-1.5.4.tar.gz#md5=834b2904f92d46aaa333267fb1c922bb Processing pip-1.5.4.tar.gz Running pip-1.5.4/setup.py -q bdist_egg --dist-dir /tmp

Problems installing Python Fabric on Windows 7

旧巷老猫 提交于 2019-12-03 16:26:30
I'm trying to install Python Fabric on Windows 7 using the guide from Getting Python and Fabric Installed on Windows . What i did so far: Installed Python 2.7 to C:\Python27 Added the Python-Directory and Python/Scripts to the Windows System Paths Installed SetupTools Installed MinGW Added MinGW-Directory to the System Path Modified the distutils.cfg to match the MinGW-Path This seemed to work fine until now. When I try to install Fabric via easy_install Fabric it starts to download the files, but then i get an chmod error . Using c:\python27\lib\site-packages\fabric-1.3.4-py2.7.egg Processing

easy_install with pypy while Python is installed

社会主义新天地 提交于 2019-12-03 12:45:51
I installed PyPy while still having Python 2.7 on my system. How do I install and then use easy_install with PyPy? What is the syntax for distinguishing where I want to install to with easy_install ? Should I set any environment variables for ease of use? I'm on Windows, but these questions seem relevant for all platform... Julien Chappuis You need to install easy_install for pypy manually. It's explained in the answer to this question : Installing Python eggs under PyPy An alternative solution is to install pip. Following the instructions in pip's documentation : wget https://bootstrap.pypa

Is there a pip / easy_install for Scala? [closed]

扶醉桌前 提交于 2019-12-03 11:34:15
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I want to organize my Scala packages and love how Python solves this issue with pip . Can you recommend a similar tool for the management of Scala packages? EDIT: I am looking for an easy installation of new packages with all it's dependencies like >>> pip install <a_package> # installs a_package with all

SSL error installing pycurl after SSL is set

跟風遠走 提交于 2019-12-03 10:41:48
Just some information to start: I'm running Mac OS 10.7.5 I have curl 7.21.4 installed (came with dev tools I believe) I have python 2.7.1 I've been trying to get pycurl installed, but every time I try to run it, I get: ImportError: pycurl: libcurl link-time ssl backend (openssl) is different from compile-time ssl backend (none/other) I first installed pycurl using the setup: python setup.py install Which didn't work (since SSL wasn't configured). I have since uninstalled pycurl ( sudo rm -rf /Library/Python/2.7/site-packages/pycurl* ) before attempting: export PYCURL_SSL_LIBRARY=openssl easy

easy_install M2Crypto failing on Windows platform

走远了吗. 提交于 2019-12-03 08:28:15
I am attempting to install M2Crypto on a Windows XP platform. I have Python, easy_install and SWIG installed, but when I attempt to easy_install M2Crypto I get the following: SWIG\_m2crypto.i(31) : Error: Unable to find 'openssl\opensslv.h' SWIG\_m2crypto.i(45) : Error: Unable to find 'openssl\safestack.h' SWIG\_evp.i(12) : Error: Unable to find 'openssl\opensslconf.h' SWIG\_ec.i(7) : Error: Unable to find 'openssl\opensslconf.h' error: Setup script exited with error: command 'swig.exe' failed with exit status 1 I have read elsewhere that people have suggested easy_install openssl-devel , but

How do I use easy_install and buildout when pypi is down?

非 Y 不嫁゛ 提交于 2019-12-03 06:51:10
问题 I am using buildout to automatically download and setup the many dependencies of my Plone installation. buildout more or less uses easy_install to download and install a bunch of Python eggs. This usually works, but it doesn't work if any of the dependencies cannot be downloaded or if I want buildout to find an internal package not appropriate for pypi. How can I set up my own local version of pypi to automatically mirror the packages I need? Will it still depend on third-party servers for

Installing easy_install… to get to installing lxml

拈花ヽ惹草 提交于 2019-12-03 04:54:17
问题 I've come to grips with the fact that ElementTree isn't going to do what I want it to do. I've checked out the documentation for lxml, and it appears that it will serve my purposes. To get lxml, I need to get easy_install. So I downloaded it from here, and put it in /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/ . Then I went to that folder, and ran sh setuptools-0.6c11-py2.6.egg . That installed successfully. Then I got excited because I thought the whole

Is there a pip / easy_install for Scala? [closed]

筅森魡賤 提交于 2019-12-03 03:00:49
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. I want to organize my Scala packages and love how Python solves this issue with pip . Can you recommend a similar tool for the management of Scala packages? EDIT: I am looking for an easy installation of new packages with all it's dependencies like >>> pip install <a_package> # installs a_package with all dependencies. Elliott Frisch The most directly similar is probably Scala Build Tool . Specifically, Library