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

2012-10-17 Thread Chris Angelico
On Tue, Oct 16, 2012 at 1:41 PM, Noah Coad wrote: > error: Not a recognized archive type: > c:\users\noahco~1\appdata\local\temp\easy_ > install-gpekqc\PyMySQL-0.5.tar.gz Nobody seems to have responded to this (or I haven't seen it), but it looks like your system can't extract gzip files. Sugges

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: >>> >>>   README.rst >>>   setup.py >>>   foobar/ >>>   foobar/__init__.p

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 >>   foobar/data/ >>   foobar/data/template.py >> >> In the above

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 (= not a python m

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 do

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 version .6C11 install and I am run

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 work. But I > have > > no ide

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 setuptools does some very 'advanced

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ó: > > I keep getting errors whe

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 -- http://mail.python.

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 >> "easy_install MySQL-python" I get a "The system cannot

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 the file > specified" message. Fu

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: Searching for MySQL-p

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 command only works if

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 instructing easy_install (by dropping the

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 >>> properly. >>> >>> easy_install c

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 "not ap

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 > > I tried doing this in the python

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:\MySQL_python-1.2.2-py2.4-win32.egg > > It usua

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 "not appear to work prope

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

Re: easy_install from svn

2007-06-19 Thread Rob Cowie
On Jun 19, 8:13 pm, Stefan Behnel <[EMAIL PROTECTED]> wrote: > Rob Cowie wrote: > > I currently use easy_install to install packages from a custom, > > locally hosted package_index. The index consists of a single html doc > > with a list of package names and urls. All works well. > > > I would like

Re: easy_install from svn

2007-06-19 Thread Stefan Behnel
Rob Cowie wrote: > I currently use easy_install to install packages from a custom, > locally hosted package_index. The index consists of a single html doc > with a list of package names and urls. All works well. > > I would like to get a little more sophisticated and install a package > from subve

Re: easy_install pylons failure - www.myghty.org unavailable

2007-01-24 Thread skip
Robert, Thanks, I passed the contents of this thread along to distutils-sig. Hopefully the list moderator is awake, as I'm not subscribed there... ;-) Skip -- http://mail.python.org/mailman/listinfo/python-list

Re: easy_install pylons failure - www.myghty.org unavailable

2007-01-23 Thread Robert Kern
Robert Kern wrote: > [EMAIL PROTECTED] wrote: > >> Is it not able to get past this point because there is only one source for >> Myghty or does it always need to go to a package's home page? I was able to >> work around this by manually downloading the Myghty-1.1.tar.gz file and >> installing it.

Re: easy_install pylons failure - www.myghty.org unavailable

2007-01-23 Thread Robert Kern
[EMAIL PROTECTED] wrote: > Is it not able to get past this point because there is only one source for > Myghty or does it always need to go to a package's home page? I was able to > work around this by manually downloading the Myghty-1.1.tar.gz file and > installing it. Asking on Distutils-SIG l