Re: distutils problem windows xp python 2.4.2

2005-12-06 Thread [EMAIL PROTECTED]
Hello, I have .net framework 2.0 because I' already able to run visual studio express 2005. Should I install .net framework 1.1 and also ms toolkit ? Sincerely Yours, pujo -- http://mail.python.org/mailman/listinfo/python-list

Re: distutils problem windows xp python 2.4.2

2005-12-05 Thread Scott David Daniels
[EMAIL PROTECTED] wrote: ... > *** Failed: error: The .NET Framework SDK needs to be installed before > building extensions for Python. ... It is so much easier with the actual error messages. Ah-ha -- you installed the compiler but not the .NET Framework. You have more downloading and installing

Re: distutils problem windows xp python 2.4.2

2005-12-05 Thread [EMAIL PROTECTED]
Hello, It give the same error result: D:\testprogram\distutils problem>setup build running build running build_ext *** Failed: error: The .NET Framework SDK needs to be installed before building extensions for Python. Attempting to patch distutils.msvccompiler and retry: running build running buil

Re: distutils problem windows xp python 2.4.2

2005-12-04 Thread Scott David Daniels
[EMAIL PROTECTED] wrote: > It didn't work with visual studio 5. .Net framework 2.0 > Do you have any suggestions? "It didn't work" is not very diagnosable. --Scott David Daniels [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

Re: distutils problem windows xp python 2.4.2

2005-12-04 Thread [EMAIL PROTECTED]
Hello Scott, It didn't work with visual studio 5. .Net framework 2.0 Do you have any suggestions? Thanks, pujo -- http://mail.python.org/mailman/listinfo/python-list

Re: distutils problem windows xp python 2.4.2

2005-12-03 Thread Scott David Daniels
[EMAIL PROTECTED] wrote: > Hello I tried to combine c++ and python together. > So I follow from this website: > http://kortis.to/radix/python_ext/ > > and my setup.py file: > from distutils.core import setup, Extension > module = Extension('pr', sources = ['prmodule.c']) > setup(name = 'Pr te

distutils problem windows xp python 2.4.2

2005-12-03 Thread [EMAIL PROTECTED]
Hello I tried to combine c++ and python together. So I follow from this website: http://kortis.to/radix/python_ext/ I have this code: # prmodule.c static PyObject *pr_isprime(PyObject *self, PyObject *args){ int n, input; if (!PyArg_ParseTuple(args, "i", &input)) return