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
[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
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
[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
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
[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
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