[ZODB-Dev] error installing ZODB 3.9.0a12 with Python 2.6 on Windows

2009-04-03 Thread Chris Withers
buildout said easy_install barfed:

Installing zeoinstance.
Getting distribution for 'ZODB3'.
error: Setup script exited with error: None
An error occured when trying to install ZODB3 3.9.0a12.Look above this 
message f
or any errors thatwere output by easy_install.
While:
   Installing zeoinstance.
   Getting distribution for 'ZODB3'.
Error: Couldn't install: ZODB3 3.9.0a12

Not exactly the most helpful error message in the world ;-)

Any ideas?

Chris

-- 
Simplistix - Content Management, Zope  Python Consulting
- http://www.simplistix.co.uk
___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] error installing ZODB 3.9.0a12 with Python 2.6 on Windows

2009-04-03 Thread Wichert Akkerman
On 4/3/09 1:41 PM, Chris Withers wrote:
 buildout said easy_install barfed:

 Installing zeoinstance.
 Getting distribution for 'ZODB3'.
 error: Setup script exited with error: None
 An error occured when trying to install ZODB3 3.9.0a12.Look above this
 message f
 or any errors thatwere output by easy_install.
 While:
 Installing zeoinstance.
 Getting distribution for 'ZODB3'.
 Error: Couldn't install: ZODB3 3.9.0a12

 Not exactly the most helpful error message in the world ;-)

 Any ideas?


buildout hides all compile errors unless you run it with -v (or -vv).

Wichert.

___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] error installing ZODB 3.9.0a12 with Python 2.6 on Windows

2009-04-03 Thread Chris Withers
Wichert Akkerman wrote:
 Any ideas?

 
 buildout hides all compile errors unless you run it with -v (or -vv).

buildout -vv didn't exactly provide much more help ;-)

C:\Python26\python.exe -c from setuptools.command.easy_install 
import main;
main() -mUNxd C:\buildout-eggs\tmpctofbd 
c:\docume~1\chris\locals~1\te
mp\tmpiks1grget_dist\ZODB3-3.9.0a11.tar.gz
path=c:\buildout-eggs\setuptools-0.6c9-py2.6.egg

Processing ZODB3-3.9.0a11.tar.gz
Running ZODB3-3.9.0a11\setup.py -q bdist_egg --dist-dir 
c:\docume~1\chris\locals
~1\temp\easy_install-7amb3r\ZODB3-3.9.0a11\egg-dist-tmp-4eufhq
error: Setup script exited with error: None
An error occured when trying to install ZODB3 3.9.0a11.Look above this 
message for any errors thatwere output by easy_install.
While:
   Installing zeoinstance.
   Getting distribution for 'ZODB3==3.9.0a11'.
Error: Couldn't install: ZODB3 3.9.0a11

Is returning None from bdist_egg an error? If so, what does it mean?

Chris

-- 
Simplistix - Content Management, Zope  Python Consulting
- http://www.simplistix.co.uk
___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] error installing ZODB 3.9.0a12 with Python 2.6 on Windows

2009-04-03 Thread Adam GROSZER
Hello Chris,

You have a c compiler working on the machine?

Friday, April 3, 2009, 1:48:39 PM, you wrote:

CW Wichert Akkerman wrote:
 Any ideas?

 
 buildout hides all compile errors unless you run it with -v (or -vv).

CW buildout -vv didn't exactly provide much more help ;-)

CW C:\Python26\python.exe -c from setuptools.command.easy_install 
CW import main;
CW main() -mUNxd C:\buildout-eggs\tmpctofbd 
CW c:\docume~1\chris\locals~1\te
CW mp\tmpiks1grget_dist\ZODB3-3.9.0a11.tar.gz
CW path=c:\buildout-eggs\setuptools-0.6c9-py2.6.egg

CW Processing ZODB3-3.9.0a11.tar.gz
CW Running ZODB3-3.9.0a11\setup.py -q bdist_egg --dist-dir 
CW c:\docume~1\chris\locals
CW ~1\temp\easy_install-7amb3r\ZODB3-3.9.0a11\egg-dist-tmp-4eufhq
CW error: Setup script exited with error: None
CW An error occured when trying to install ZODB3 3.9.0a11.Look above this
CW message for any errors thatwere output by easy_install.
CW While:
CWInstalling zeoinstance.
CWGetting distribution for 'ZODB3==3.9.0a11'.
CW Error: Couldn't install: ZODB3 3.9.0a11

CW Is returning None from bdist_egg an error? If so, what does it mean?

CW Chris



-- 
Best regards,
 Adam GROSZERmailto:agros...@gmail.com
--
Quote of the day:
They that know God will be humble; they that know themselves cannot be proud. 
- John Flavel 

___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] error installing ZODB 3.9.0a12 with Python 2.6 on Windows

2009-04-03 Thread Chris Withers
Adam GROSZER wrote:
 Hello Chris,
 
 You have a c compiler working on the machine?

Yep, mingw I think...

But that doesn't look like the normal you don't have a compile whine...

Chris

-- 
Simplistix - Content Management, Zope  Python Consulting
- http://www.simplistix.co.uk
___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] error installing ZODB 3.9.0a12 with Python 2.6 on Windows

2009-04-03 Thread Jim Fulton
ZODB doesn't work with Python 2.6 yet on Windows.

Jim

On Apr 3, 2009, at 7:41 AM, Chris Withers wrote:

 buildout said easy_install barfed:

 Installing zeoinstance.
 Getting distribution for 'ZODB3'.
 error: Setup script exited with error: None
 An error occured when trying to install ZODB3 3.9.0a12.Look above this
 message f
 or any errors thatwere output by easy_install.
 While:
   Installing zeoinstance.
   Getting distribution for 'ZODB3'.
 Error: Couldn't install: ZODB3 3.9.0a12

 Not exactly the most helpful error message in the world ;-)

 Any ideas?

 Chris

 -- 
 Simplistix - Content Management, Zope  Python Consulting
- http://www.simplistix.co.uk
 ___
 For more information about ZODB, see the ZODB Wiki:
 http://www.zope.org/Wikis/ZODB/

 ZODB-Dev mailing list  -  ZODB-Dev@zope.org
 http://mail.zope.org/mailman/listinfo/zodb-dev

--
Jim Fulton
Zope Corporation


___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] error installing ZODB 3.9.0a12 with Python 2.6 on Windows

2009-04-03 Thread Chris Withers
Jim Fulton wrote:
 
 Andreas tells me Python 2.6 is the target for Zope 2.12.
 What kind of problems are there in this specific combination?
 
 The tests crash when built with the free ms compiler.
 
 If you want to help, you can debug this.

Sadly, easier to install on Linux. Blame vmware for making that easy 
even on a Windows-only desktop :-(

Chris

-- 
Simplistix - Content Management, Zope  Python Consulting
- http://www.simplistix.co.uk
___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev