Re: Can't run easy_install even though setuptools is installed

2019-11-08 Thread Cameron Simpson
On 09Nov2019 13:15, Cameron Simpson wrote: On 08Nov2019 09:14, Chris Green wrote: Cameron Simpson wrote: Have you tried this? pip install onkyo-eiscp I have now and it worked perfectly. So why do the install instructions for onkyo-eiscp say do "easy_install onkyo-eiscp"? It

Re: Can't run easy_install even though setuptools is installed

2019-11-08 Thread Cameron Simpson
On 08Nov2019 09:14, Chris Green wrote: Cameron Simpson wrote: Have you tried this? pip install onkyo-eiscp I have now and it worked perfectly. So why do the install instructions for onkyo-eiscp say do "easy_install onkyo-eiscp"? It definitely means from the command line. I

Re: Can't run easy_install even though setuptools is installed

2019-11-08 Thread Chris Green
Cameron Simpson wrote: > On 07Nov2019 21:38, Chris Green wrote: > >I'm a bit flummoxed. > > > >I'm trying to install a Python package from pypi.org, it says it > >should be installed by running "easy_install onkyo-eiscp" but I just > >get &quo

Re: Can't run easy_install even though setuptools is installed

2019-11-07 Thread Cameron Simpson
On 07Nov2019 21:38, Chris Green wrote: I'm a bit flummoxed. I'm trying to install a Python package from pypi.org, it says it should be installed by running "easy_install onkyo-eiscp" but I just get "easy_install: command not found" when I try that. I do have set

Can't run easy_install even though setuptools is installed

2019-11-07 Thread Chris Green
I'm a bit flummoxed. I'm trying to install a Python package from pypi.org, it says it should be installed by running "easy_install onkyo-eiscp" but I just get "easy_install: command not found" when I try that. I do have setuptools installed on my system and I ca

Re: A detailed description on virtualenv's packaging dependecies? (pip, easy_install, wheel, setuptools, distlib, etc.)

2017-01-16 Thread Paul Moore
lieve that virtualenv directly imports `pip`, `easy_install` and `wheel`. > Those in turn import `setuptools` and `distlib`. Am I so lucky as to assume > that distlib in the lowest-level library used by all the rest in virtualenv > for packages? I believe distlib is the lowest level. But

A detailed description on virtualenv's packaging dependecies? (pip, easy_install, wheel, setuptools, distlib, etc.)

2017-01-13 Thread haraldnordgren
and now set my sight on distlib. Can someone describe the specific dependencies of all the *packaging* libraries that `virtualenv` uses? And the dependencies between them? I believe that virtualenv directly imports `pip`, `easy_install` and `wheel`. Those in turn import `setuptools` and `distlib

Re: easy_install says "not a recognized archive type" Windows Py3

2012-10-17 Thread Chris Angelico
extract gzip files. Suggestions found on other fora (at the opposite end of a Google search) point to possibly using pip instead of easy_install; alternatively, you may be able to install a Windows gzip utility, though I don't know anything about linking that up with easy_install. Sorry I can'

easy_install says "not a recognized archive type" Windows Py3

2012-10-15 Thread Noah Coad
ibute Requirement already up-to-date: distribute in c:\python32\lib\site-packages\dist ribute-0.6.28-py3.2.egg Cleaning up... [C:\Python32]easy_install pymysql Searching for pymysql Reading http://pypi.python.org/simple/pymysql/ Couldn't find index page for 'pymysql' (maybe misspelled

Re: Help needed installing easy_install and lxml2

2012-08-16 Thread Ian
On 16/08/2012 08:01, Stefan Behnel wrote: http://lxml.de/FAQ.html#where-are-the-binary-builds Stefan Hi Stefan, Thanks Stefan, everything is working fine now. Regards Ian -- http://mail.python.org/mailman/listinfo/python-list

Re: Help needed installing easy_install and lxml2

2012-08-16 Thread Stefan Behnel
Ian, 15.08.2012 21:39: > On a reasonably fresh (3 day old) install of 64 bit windows 7, I have > installed the 64 bit Python 2.7.3 from http://www.python.org/download/ > > Then I installed the 64 bit version of easy_install using > http://pypi.python.org/pypi/setuptools >

Help needed installing easy_install and lxml2

2012-08-15 Thread Ian
Hi, On a reasonably fresh (3 day old) install of 64 bit windows 7, I have installed the 64 bit Python 2.7.3 from http://www.python.org/download/ Then I installed the 64 bit version of easy_install using http://pypi.python.org/pypi/setuptools And then install lxml 2.3.5, for which I use

Re: easy_install doesn't install non-package *.py file

2011-11-10 Thread Makoto Kuwata
On Thu, Nov 10, 2011 at 6:08 PM, Jonathan Hartley wrote: > Hey. I don't know the details, but your setup.py needs to use either the > 'package_data' or the 'data_files' entry in the dict you pass to setup. These > can specify files you want included in the sdist which aren't package files. > > T

Re: easy_install doesn't install non-package *.py file

2011-11-10 Thread Jonathan Hartley
Hey. I don't know the details, but your setup.py needs to use either the 'package_data' or the 'data_files' entry in the dict you pass to setup. These can specify files you want included in the sdist which aren't package files. There are many complications with using them though. One of them in

Re: easy_install doesn't install non-package *.py file

2011-11-09 Thread Chris Angelico
On Thu, Nov 10, 2011 at 11:58 AM, Makoto Kuwata wrote: > I want to use template names according to language, > such as template.py, template.html, template.rst, template.js, and so on. > You may have another problem here. Everyone and everything that looks at these will expect them to be Python,

Re: easy_install doesn't install non-package *.py file

2011-11-09 Thread Makoto Kuwata
On Thu, Nov 10, 2011 at 9:58 AM, Makoto Kuwata wrote: > On Wed, Nov 9, 2011 at 4:09 AM, Terry Reedy wrote: >> On 11/7/2011 11:32 PM, Makoto Kuwata wrote: >>> >>> I got trouble about easy_install command. >>> >>> My package: >>> >>>

Re: easy_install doesn't install non-package *.py file

2011-11-09 Thread Makoto Kuwata
On Wed, Nov 9, 2011 at 4:09 AM, Terry Reedy wrote: > On 11/7/2011 11:32 PM, Makoto Kuwata wrote: >> >> I got trouble about easy_install command. >> >> My package: >> >>   README.rst >>   setup.py >>   foobar/ >>   foobar/__init__.py &g

Re: easy_install doesn't install non-package *.py file

2011-11-08 Thread Terry Reedy
On 11/7/2011 11:32 PM, Makoto Kuwata wrote: I got trouble about easy_install command. My package: README.rst setup.py foobar/ foobar/__init__.py foobar/data/ foobar/data/template.py In the above example, 'foobar/data/template.py' is just a template data file (= no

easy_install doesn't install non-package *.py file

2011-11-07 Thread Makoto Kuwata
I got trouble about easy_install command. My package: README.rst setup.py foobar/ foobar/__init__.py foobar/data/ foobar/data/template.py In the above example, 'foobar/data/template.py' is just a template data file (= not a python module file). (notice that 'foobar/d

Re: How to install easy_install on windows ?

2011-08-17 Thread Duncan Booth
aspineux wrote: > in a command prompt run > C:\Your Python Directory\python.exe C:\Your Download directory > \ez_setup.py > > Then use > > C:\Your Python Directory\python.exe C:\Your Python Directory\I dont > know where the easy_install script will be installed\e

Re: How to install easy_install on windows ?

2011-08-16 Thread aspineux
On Aug 16, 2:17 pm, smith jack wrote: > it needs read registry, but the python i used is extracted from .zip, > so there is no record in the registry, Noone need it, Python dont use any registry key > what should i do in order to install easy_install for my python environment? get ez

How to install easy_install on windows ?

2011-08-16 Thread smith jack
it needs read registry, but the python i used is extracted from .zip, so there is no record in the registry, what should i do in order to install easy_install for my python environment? -- http://mail.python.org/mailman/listinfo/python-list

Re: To install lxml (and easy_install) for Python 3 under Windows...

2011-06-12 Thread Irmen de Jong
On 12-6-2011 18:38, ncdave4l...@mailinator.com wrote: > I had difficulty installing lxml for Python 3.1 under Windows, and > took some notes as I worked through it. Here's how I finally managed > it... > > [...] In cases like this, Christoph Gohlke's page with 'Unofficial Windows Binaries for

To install lxml (and easy_install) for Python 3 under Windows...

2011-06-12 Thread ncdave4life
python.org/pypi/lxml Download the lxml-2.3-py3.1-win32.egg file. The instructions say, "Just use easy_install by following the installation instructions above." Ha! Those instructions don't work for Python 3 under Windows. The (wrong) instructions are: Get the easy

Re: how to install easy_install

2011-05-14 Thread TheSaint
rusi wrote: > tried to install easy_install (This is on windows) > I downloaded the executable and ran it. It claimed to have done its > job. Perhaps, the abit to just click is disordering some easy steps like copy the script files into the normal place. Only when there's a p

Re: how to install easy_install

2011-05-14 Thread rusi
On May 13, 11:29 pm, Ian Kelly wrote: > On Fri, May 13, 2011 at 11:40 AM, rusi wrote: > > I tried to install easy_install (This is on windows) > > I downloaded the executable and ran it. It claimed to have done its > > job. > > > But now when I type easy

Re: how to install easy_install

2011-05-13 Thread Ian Kelly
On Fri, May 13, 2011 at 11:40 AM, rusi wrote: > I tried to install easy_install (This is on windows) > I downloaded the executable and ran it. It claimed to have done its > job. > > But now when I type easy_install at a cmd prompt I get > easy_install is not a command... &

how to install easy_install

2011-05-13 Thread rusi
I tried to install easy_install (This is on windows) I downloaded the executable and ran it. It claimed to have done its job. But now when I type easy_install at a cmd prompt I get easy_install is not a command... [I guess I am a perennial noob to windows, never being able to comprehend the PATH

Re: How to install uTidylib, easy_install problem

2010-11-22 Thread Sridhar Ratnakumar
On 2010-11-22, at 4:22 PM, goldtech wrote: > I'm using activepython 2.6 on XP. I am trying to install uTidylib 0.2 > with easy_install. I like uTidylib more vs. newer modules.and want to > use it. I get output below. How do I install it? I do see it in > http://pypi.python.or

How to install uTidylib, easy_install problem

2010-11-22 Thread goldtech
I'm using activepython 2.6 on XP. I am trying to install uTidylib 0.2 with easy_install. I like uTidylib more vs. newer modules.and want to use it. I get output below. How do I install it? I do see it in http://pypi.python.org/simple/uTidylib/ Thanks. C:\Documents and Settings\

Re: Difficulty in easy_install

2010-10-13 Thread Diez B. Roggisch
me :( >> >> I don't know if the proxy server is causing the problems , in linux i >> would have import http-proxy in .bashrc >> but am not a windows expert >> can anyone help me plz > > That's about typical. "easy_install" isn&#x

Re: Difficulty in easy_install

2010-10-13 Thread John Nagle
blems , in linux i would have import http-proxy in .bashrc but am not a windows expert can anyone help me plz That's about typical. "easy_install" isn't "easy". It has some built-in assumptions about where various files are stored, and if the installation doesn&

Re: Difficulty in easy_install

2010-10-11 Thread Diez B. Roggisch
sankalp srivastava writes: > I am having difficulty in easy_installing > I use a proxy server and strange errors , like it can't fetch the > package is showing up . > the package is pyspeech ...please help me :( > > I don't know if the proxy server is causing the problems , in linux i > would ha

Difficulty in easy_install

2010-10-11 Thread sankalp srivastava
I am having difficulty in easy_installing I use a proxy server and strange errors , like it can't fetch the package is showing up . the package is pyspeech ...please help me :( I don't know if the proxy server is causing the problems , in linux i would have import http-proxy in .bashrc but am no

Re: PyDispatcher on sourceforge doesn't play nice with easy_install

2010-03-31 Thread Chris Withers
Mike C. Fletcher wrote: Chris Withers wrote: Hi All, Using easy_install to get PyDispatcher results in: ... Who's the maintainer of PyDispatcher nowadays? Would be handy if they removed the sourceforge link from pypi. ... Thanks for the report. I've released a 2.0.2 versi

Re: PyDispatcher on sourceforge doesn't play nice with easy_install

2010-03-30 Thread Mike C. Fletcher
Chris Withers wrote: > Hi All, > > Using easy_install to get PyDispatcher results in: > ... > Who's the maintainer of PyDispatcher nowadays? Would be handy if they > removed the sourceforge link from pypi. ... Thanks for the report. I've released a 2.0.2 version on

PyDispatcher on sourceforge doesn't play nice with easy_install

2010-03-30 Thread Chris Withers
Hi All, Using easy_install to get PyDispatcher results in: Searching for PyDispatcher Reading http://pypi.python.org/simple/PyDispatcher/ Reading http://pydispatcher.sourceforge.net Reading https://sourceforge.net/project/showfiles.php?group_id=79755 Reading http://sourceforge.net/projects

Re: easy_install error ...

2010-01-25 Thread tekion
FYI, I figured out what I was doing wrong. After reading the setuptools docs, I noticed took out the quotes around the package name and it works, see details below: python setup.py easy_install -m docutils==0.4 running easy_install Searching for docutils==0.4 Best match: docutils 0.4 Processing

Re: easy_install error ...

2010-01-24 Thread tekion
I am also having another issue with easy_install, python setup.py easy_install --find-links thirdparty 'docutils==0.4' running easy_install error: Not a URL, existing file, or requirement spec: "'docutils==0.4'" I think both problem are related. I have setuptool

easy_install error ...

2010-01-24 Thread tekion
All, I am running into issue with easy install error, see error below: python setup.py easy_install -m 'docutils==0.4' running easy_install error: Not a URL, existing file, or requirement spec: "'docutils==0.4'" any idea as to why? thanks. -- http://mail.python.org/mailman/listinfo/python-list

easy_install fails on python-magic

2010-01-11 Thread Daniel Fetchinson
I'm not sure whose fault this is, the author of python-magic or easy_install (I'm guessing easy_install) but in any case easy_install python-magic (as root) fails with Searching for python-magic Reading http://pypi.python.org/simple/python-magic/ Reading http://hupp.org/adam/hg/pytho

Re: virtualenv under Win7: easy_install fails in virtual environments

2009-10-26 Thread Michel Claveau - MVP
Hi! Try to unactive UAC... @+ -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list

virtualenv under Win7: easy_install fails in virtual environments

2009-10-25 Thread Guillermo
enever I try to run easy_install within the new virtual environment, I'm prompted to enter my admin password (I'm running as "Power User" normally) and easy_install fails complaining that "Can't find D:/correct/path/to/ virtualenv/Scripts/python.exe". This path is private t

Re: [Image-SIG] Some issue with easy_install and PIL/Imaging

2009-10-05 Thread Chris Withers
Fredrik Lundh wrote: The problem is that too many people arguing for eggs do this by sending nastygrams, which doesn't really provide much motivation for doing anything about it (I don't do asshole-driven development). Indeed, I couldn't agree more, and I'm sorry you've been subjected to this.

Re: [Image-SIG] Some issue with easy_install and PIL/Imaging

2009-10-05 Thread Fredrik Lundh
The problem is that too many people arguing for eggs do this by sending nastygrams, which doesn't really provide much motivation for doing anything about it (I don't do asshole-driven development). The public review PIL got a couple a minutes ago matches some of the private mail I've gotten: n

Re: [Image-SIG] Some issue with easy_install and PIL/Imaging

2009-09-30 Thread Chris Withers
Fredrik Lundh wrote: On Fri, Sep 11, 2009 at 3:49 PM, Chris Withers wrote: Klein Stéphane wrote: Resume : 1. first question : why PIL package in "pypi" don't work ? Because Fred Lundh have his package distributions unfortunate names that setuptools doesn't like... It used to support this, b

Re: Some issue with easy_install and PIL/Imaging

2009-09-28 Thread Klein Stéphane
Fredrik Lundh a écrit : On Fri, Sep 11, 2009 at 3:49 PM, Chris Withers wrote: Klein Stéphane wrote: Resume : 1. first question : why PIL package in "pypi" don't work ? Because Fred Lundh have his package distributions unfortunate names that setuptools doesn't like... It used to support this

Re: [Image-SIG] Some issue with easy_install and PIL/Imaging

2009-09-28 Thread Fredrik Lundh
On Fri, Sep 11, 2009 at 3:49 PM, Chris Withers wrote: > Klein Stéphane wrote: >> >> Resume : >> 1. first question : why PIL package in "pypi" don't work ? > > Because Fred Lundh have his package distributions unfortunate names that > setuptools doesn't like... It used to support this, but no long

Re: Some issue with easy_install and PIL/Imaging

2009-09-11 Thread Chris Withers
t;python setup.py develop", I've this error : "error: Could not find required distribution Imaging". Why ? See above. Now, I add --find-links parameter to easy_install : If you google harder, you'll find there are packagings of PIL that do work with setuptools...

Some issue with easy_install and PIL/Imaging

2009-09-09 Thread Klein Stéphane
quot;error: Could not find required distribution Imaging". Why ? Full explication : First, I test manualy installation : :: (env1)skl...@eee-sklein:$ easy_install pil Searching for pil Reading http://pypi.python.org/simple/pil/ Reading http://www.pythonware.com/products/pi

Re: Using easy_install, reduncant?

2009-08-06 Thread Adam N
rceforge.net/projects/pythonpkgmgr/ > > You might find it a lot simpler. It will download and install setuptools > for you if you are still having problems. > > David Is there any solution within the easy_install world? I'm trying to run a script (pinax) that calls it specifical

Re: easy_install: unresolved external symbol

2009-08-04 Thread Bart Smeets
How do I give the option to link to the ez_setup.py? 2009/8/4 David Lyon > On Tue, 4 Aug 2009 10:52:20 +0200, Bart Smeets > wrote: > > I could ofcourse use cxfreeze's binary package. But bbfreeze is not > > available as a binary. I would love to get easy_install to wo

Re: easy_install: unresolved external symbol

2009-08-04 Thread David Lyon
On Tue, 4 Aug 2009 10:52:20 +0200, Bart Smeets wrote: > I could ofcourse use cxfreeze's binary package. But bbfreeze is not > available as a binary. I would love to get easy_install to work. But I have > no idea what's going wrong here. What is going on is that setupt

Re: easy_install: unresolved external symbol

2009-08-04 Thread Bart Smeets
I could ofcourse use cxfreeze's binary package. But bbfreeze is not available as a binary. I would love to get easy_install to work. But I have no idea what's going wrong here. 2009/8/4 Gabriel Genellina > En Mon, 03 Aug 2009 17:39:44 -0300, Bart Smeets > escribió: > >

Re: easy_install: unresolved external symbol

2009-08-03 Thread Gabriel Genellina
En Mon, 03 Aug 2009 17:39:44 -0300, Bart Smeets escribió: I keep getting errors when trying to use easy_install to install bbfreeze or cxfreeze (same errors). This is the output: http://pastebin.com/m65ba474d Can't you use the binary packages? -- Gabriel Genellina --

easy_install: unresolved external symbol

2009-08-03 Thread Bart Smeets
Hello, I keep getting errors when trying to use easy_install to install bbfreeze or cxfreeze (same errors). This is the output: http://pastebin.com/m65ba474d The error message unresolved external symbol keeps popping up. I have no idea how to solve this. Can anyone give me a hint? Thanks in

Re: Can you easy_install from your localhost?

2009-07-30 Thread Christian Heimes
Ronn Ross schrieb: > I have a package i would like to store locally. If it is stored locally can > I do something like ' easy_install http://localhost/package ' ? Thanks You can do: easy_install /path/to/package-0.1.tar.gz or you can put your packages into /some/directory/si

Can you easy_install from your localhost?

2009-07-30 Thread Ronn Ross
I have a package i would like to store locally. If it is stored locally can I do something like ' easy_install http://localhost/package ' ? Thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: Using easy_install, reduncant?

2009-07-27 Thread David Lyon
On Mon, 27 Jul 2009 09:42:06 -0700 (PDT), ray wrote: > I am working on a Trac installation. I am new to Python. To install > packages, it is suggested to use setuptools. I have not understood > the directions. > > I execute ez_install.py. > > Then I attempt to execute easy_install.py setuptoo

Re: Using easy_install, reduncant?

2009-07-27 Thread Diez B. Roggisch
John Nagle wrote: > ray wrote: >> I am working on a Trac installation. I am new to Python. To install >> packages, it is suggested to use setuptools. I have not understood >> the directions. >> >> I execute ez_install.py. >> >> Then I attempt to execute easy_install.py setuptools-0.6c9-py2.6.

Re: Using easy_install, reduncant?

2009-07-27 Thread John Nagle
ray wrote: I am working on a Trac installation. I am new to Python. To install packages, it is suggested to use setuptools. I have not understood the directions. I execute ez_install.py. Then I attempt to execute easy_install.py setuptools-0.6c9-py2.6.egg. There response that setuptools is a

Using easy_install, reduncant?

2009-07-27 Thread ray
I am working on a Trac installation. I am new to Python. To install packages, it is suggested to use setuptools. I have not understood the directions. I execute ez_install.py. Then I attempt to execute easy_install.py setuptools-0.6c9-py2.6.egg. There response that setuptools is already the ac

Re: dblck py file run, setuptools, easy_install don't work

2009-03-26 Thread Tim Golden
ither (same error). 4. easy_install does not work period. It did not work for Python 2.5 either. Well, just to clarify something which may not be obvious to you: easy_install (and setuptools on which it is based) are not part of Python as such. They are 3rd-party add-ons which you can get b

dblck py file run, setuptools, easy_install don't work

2009-03-26 Thread Kevin Ar18
ither (same error). 4. easy_install does not work period. It did not work for Python 2.5 either. So... what changes must be made to the system to get Python working like it should after you install it? _ Windows Live™ Sk

Re: easy_install with MySQL-python

2009-03-03 Thread Ske
Mike Driscoll wrote: > > On Mar 3, 7:44 am, Ske wrote: >> Let me apologise in advance if I’m missing something obvious, I’m still >> very >> new to this! >> >> I’m attempting to install MySQL-python in Python2.6 on Windows. On >> running >>

Re: easy_install with MySQL-python

2009-03-03 Thread Mike Driscoll
On Mar 3, 7:44 am, Ske wrote: > Let me apologise in advance if I’m missing something obvious, I’m still very > new to this! > > I’m attempting to install MySQL-python in Python2.6 on Windows. On running > "easy_install MySQL-python" I get a "The system cannot find

easy_install with MySQL-python

2009-03-03 Thread Ske
Let me apologise in advance if I’m missing something obvious, I’m still very new to this! I’m attempting to install MySQL-python in Python2.6 on Windows. On running "easy_install MySQL-python" I get a "The system cannot find the file specified" message. Full output is below:

Re: Problem trying to install ReportLab with easy_install

2009-02-22 Thread Sebastian Bassi
swavplayobject.so.0.0.0 /usr/lib/libartsdsp_st.so.0.0.0 (t6)sba...@hp:~/test/virtualenv-1.3.2/t6$ ls lib/python2.5/site-packages/ easy-install.pthsetuptools.pth setuptools-0.6c9-py2.5.egg xlwt-0.7.0-py2.5.egg This is a virtualenv created with --no-site-packages (to have a clean start). O

Re: Problem trying to install ReportLab with easy_install

2009-02-22 Thread Garrett Cooper
esting virtualenv and easy_install). > > (testbio149)vi...@maricurie:~/Public/testbio149$ easy_install ReportLab > Searching for ReportLab > Reading http://pypi.python.org/simple/ReportLab/ > Reading http://www.reportlab.com/ > Best match: reportLab 2.3 > Downloading >

Problem trying to install ReportLab with easy_install

2009-02-21 Thread Sebastian Bassi
I don't understand what is wrong when I try to install ReportLab. This is under Ubuntu and all build packages are installed. Here is what I get when trying to install it: (I could install it with apt-get, but I am testing virtualenv and easy_install). (testbio149)vi...@maricurie:~/P

Re: easy_install

2009-02-09 Thread hall . jeff
I had it downloaded and sitting in the root c:\ but didn't get it to run because I didn't think about the \scripts folder not being in the Path. Problem solved and fixed. Thank you all for your help. On a side note, "easy_install MySQL-python" produced the following messages:

Re: easy_install

2009-02-08 Thread Martin v. Löwis
> http://peak.telecommunity.com/DevCenter/EasyInstall#downloading-and-installing-a-package > > seems to imply that after installation I can goto a command prompt and > type > > easy_install c:\MySQL_python-1.2.2-py2.4-win32.egg These instructions must have misled you. This com

Re: easy_install

2009-02-08 Thread Martin v. Löwis
> That's kinda apples to oranges to what the OP's problem is. > > The OP appears to be trying to install an egg he downloaded > previously. I think he actually didn't - if you read his messages, nowhere he said that he actually downloaded the file, and that it actually exists in the root director

Re: easy_install

2009-02-08 Thread Stephen Hansen
> I updated my easy_install, used the scripts directory, dropped the "c:\" and > it gave the response below for me: That's kinda apples to oranges to what the OP's problem is. The OP appears to be trying to install an egg he downloaded previously. You're instructin

Re: easy_install

2009-02-08 Thread Benjamin Kaplan
On Sun, Feb 8, 2009 at 12:18 PM, Colin J. Williams wrote: > Diez B. Roggisch wrote: > >> hall.j...@gmail.com wrote: >> >> For the life of me I can not figure out how to get easy_install to >>> work. The syntax displayed on the web page does not appear to work &

Re: easy_install

2009-02-08 Thread Colin J. Williams
Diez B. Roggisch wrote: hall.j...@gmail.com wrote: For the life of me I can not figure out how to get easy_install to work. The syntax displayed on the web page does not appear to work properly. easy_install c:\MySQL_python-1.2.2-py2.4-win32.egg It usually works for me - so what does &quo

Re: easy_install

2009-02-08 Thread Duncan Booth
hall.j...@gmail.com wrote: > http://peak.telecommunity.com/DevCenter/EasyInstall#downloading-and-ins > talling-a-package > > seems to imply that after installation I can goto a command prompt and > type > > easy_install c:\MySQL_python-1.2.2-py2.4-win32.egg > >

Re: easy_install

2009-02-08 Thread hall . jeff
On Feb 8, 9:27 am, "Diez B. Roggisch" wrote: > hall.j...@gmail.com wrote: > > For the life of me I can not figure out how to get easy_install to > > work. The syntax displayed on the web page does not appear to work > > properly. > > > easy_install c:\M

Re: easy_install

2009-02-08 Thread Diez B. Roggisch
hall.j...@gmail.com wrote: > For the life of me I can not figure out how to get easy_install to > work. The syntax displayed on the web page does not appear to work > properly. > > easy_install c:\MySQL_python-1.2.2-py2.4-win32.egg It usually works for me - so what does &quo

easy_install

2009-02-08 Thread hall . jeff
For the life of me I can not figure out how to get easy_install to work. The syntax displayed on the web page does not appear to work properly. easy_install c:\MySQL_python-1.2.2-py2.4-win32.egg Is there a simpler way to install a python egg? Or am I missing something with easy_install? -- http

Re: easy_install of module produces un-importable result

2008-12-08 Thread Val
On Dec 8, 2:57 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > Val schrieb:> I've written my first module, " > > " and uploaded it as an egg to > > > PyPI. I can use easy_istall to install my own module, but when I try > > to import it I get an ImportError "No module named gpsparser". > > > So

Re: easy_install of module produces un-importable result

2008-12-08 Thread Diez B. Roggisch
Val schrieb: I've written my first module, " " and uploaded it as an egg to PyPI. I can use easy_istall to install my own module, but when I try to import it I get an ImportError "No module named gpsparser". So I've done some research and found that in my site-packages/ directory gpsparser exi

easy_install of module produces un-importable result

2008-12-08 Thread Val
I've written my first module, "gpsparser" and uploaded it as an egg to PyPI. I can use easy_istall to install my own module, but when I try to import it I get an ImportError "No module named gpsparser". So I've done some research and found that in my site-packages/ directory gpsparser exists as an

Re: Import of egg packages installed with easy_install

2008-12-01 Thread Alexey Vlasov
Hi Diez. On Mon, Dec 01, 2008 at 08:09:29PM +0100, Diez B. Roggisch wrote: > It's not sufficient to add simply your local site-packages, you must install > it using the module site's addsitedir-function, like this: > > import site > site.addsitedir("/home/username/python/lib/python2.5/site-packa

Re: Import of egg packages installed with easy_install

2008-12-01 Thread Diez B. Roggisch
Alexey Vlasov wrote: > Hi. > > There's an already installed with easy_install packet, let's say flup, > to the home catalog: > $ ls -la ~/python/lib/python2.5/site-packages/ > total 176 > drwxr-xr-x 3 4096 Nov 29 18:57 . > drwxr-xr-x 3 4096 Nov 29 18:51 .. >

Import of egg packages installed with easy_install

2008-12-01 Thread Alexey Vlasov
Hi. There's an already installed with easy_install packet, let's say flup, to the home catalog: $ ls -la ~/python/lib/python2.5/site-packages/ total 176 drwxr-xr-x 3 4096 Nov 29 18:57 . drwxr-xr-x 3 4096 Nov 29 18:51 .. -rw-r--r-- 1 208 Nov 29 18:57 easy-install.pth -rw-r--r-- 1 134

Post easy_install hooks/message

2008-10-27 Thread Orestis Markou
data_files = [ ('vim', ['pysmell.vim']) ], include_package_data = True, and in MANIFEST.in : include pysmell.vim This means than when I do python setup.py sdist, I get the pysmell.vim file, but when the egg is created by easy_install, a vim folder with the vim script

Re: how to do easy_install to source code, not egg?

2008-09-18 Thread Diez B. Roggisch
dmitrey wrote: > Hi all, > how to do easy_install to source code, not egg? > > (I don't mean "develop" option, it shouldn't call compiled egg-file). $ easy_install --help --editable (-e)Install specified packages in editable form You

how to do easy_install to source code, not egg?

2008-09-18 Thread dmitrey
Hi all, how to do easy_install to source code, not egg? (I don't mean "develop" option, it shouldn't call compiled egg-file). Thank you in advance, Dmitrey. -- http://mail.python.org/mailman/listinfo/python-list

Using UNC paths for --find-links in easy_install on Windows

2008-08-12 Thread Salim Fadhley
ython eggs we store these on a local file-server. Has anybody had any luck using the --find_options argument to easy_install with a local folder (e.g. on a Windows C: Drive) or a network folder, for example easy_install --find-links="http://server/egs"; myegg==1.0.1 that sort of thing

Re: Installing BeautifulSoup with easy_install (broken?)

2008-04-18 Thread Stefan Behnel
John Nagle wrote: > easy_install usually seems to make things harder. > >BeautifulSoup is one single .py file. That's all you need. > Everything else is excess baggage. I wouldn't call the installation of a single module Python package a good example for the "us

Re: Installing BeautifulSoup with easy_install (broken?)

2008-04-18 Thread John Nagle
Larry Bates wrote: > Info: > > Python version: ActivePython 2.5.1.1 > Platform: Windows > > I wanted to install BeautifulSoup today for a small project and decided > to use easy_install. I can install other packages just fine. > Unfortunately I get the following

Re: Installing BeautifulSoup with easy_install (broken?)

2008-04-18 Thread Diez B. Roggisch
Larry Bates schrieb: > Diez B. Roggisch wrote: >> Larry Bates schrieb: >>> Info: >>> >>> Python version: ActivePython 2.5.1.1 >>> Platform: Windows >>> >>> I wanted to install BeautifulSoup today for a small project and >>> d

Re: Installing BeautifulSoup with easy_install (broken?)

2008-04-18 Thread Larry Bates
Diez B. Roggisch wrote: > Larry Bates schrieb: >> Info: >> >> Python version: ActivePython 2.5.1.1 >> Platform: Windows >> >> I wanted to install BeautifulSoup today for a small project and >> decided to use easy_install. I can install other pac

Re: Installing BeautifulSoup with easy_install (broken?)

2008-04-18 Thread Diez B. Roggisch
Larry Bates schrieb: > Info: > > Python version: ActivePython 2.5.1.1 > Platform: Windows > > I wanted to install BeautifulSoup today for a small project and decided > to use easy_install. I can install other packages just fine. > Unfortunately I get the following

Installing BeautifulSoup with easy_install (broken?)

2008-04-18 Thread Larry Bates
Info: Python version: ActivePython 2.5.1.1 Platform: Windows I wanted to install BeautifulSoup today for a small project and decided to use easy_install. I can install other packages just fine. Unfortunately I get the following error from BeautifulSoup installation attempt: C:\Python25\Lib

Re: Question about PyPI and 'easy_install'

2008-02-28 Thread Richard Jones
makoto kuwata wrote: > Your patch shows that both project name (Tenjin) and package name > (pyTenjin) should be the same name. > And, I'm afraid that your patch seems to require user to install > setuptools. > I want Tenjin to be install not only with easy_install but also

Re: Question about PyPI and 'easy_install'

2008-02-26 Thread makoto kuwata
(pyTenjin) should be the same name. And, I'm afraid that your patch seems to require user to install setuptools. I want Tenjin to be install not only with easy_install but also without setuptools. -- regards, makoto kuwata -- http://mail.python.org/mailman/listinfo/python-list

Re: Question about PyPI and 'easy_install'

2008-02-26 Thread Vsevolod Balashov
On Feb 24, 10:38 pm, makoto kuwata <[EMAIL PROTECTED]> wrote: > Hi, > > I have a trouble around PyPI and easy_install. > > I have developed OSS (Tenjin) and registered it to > PyPI.http://pypi.python.org/pypi/Tenjin/0.6.1 > > But I can't install it by '

Re: Question about PyPI and 'easy_install'

2008-02-25 Thread makoto kuwata
On 2008-02-25, Richard Jones <[EMAIL PROTECTED]> wrote: > makoto kuwata wrote: > > Is it required to set registered name (Tenjin) and > > package name (pyTenjin) into same name? > > Yes. > Thank you, Richard. Your answer helps me very much. > How did you upload those files with a different name

  1   2   >