Re: python cryptography toolkit
Adrien Plisson <[email protected]>
| Newsgroups | gmane.comp.python.cryptography |
|---|---|
| Message-ID | <000701c1f374$39f68e20$2cee4cd4@RANDOM> |
From: "Sylvain Thénault" <[email protected]> > On Saturday 04 May à 08:06, Burt Leavenworth wrote: > > When I run: python setup.py build > > I get: > > > > running build_ext > > building 'Crypto.Hash.MD2' extension > > ... > > error: command 'cl.exe' failed: No such file or directory > > > > Any idea why this doesn't work? > > I'm a newbie with the pct, but I guess you don't have cl.exe (which is > needed to build C extensions) installed or in your PATH. cl.exe is just the "Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8168 for 80x86" (as said when typing cl.exe /?) it's a compiler though... it could be helpful to build some program... - try opening a MS-DOS command prompt and type cl.exe. if it complains about not finding cl.exe, then it is not on your path. - try finding it on your computer. if you can't find it on your computer, it means you just don't have a microsoft compiler installed... else add the patyh to cl.exe in your PATH environment variable. btw, you can do it in at the command prompt, but it will be only for this console until you close it. if cl.exe is on your computer and in the PATH, then try sending a more complete log of nything that happens when you try setup.py. regards, -- rien