472,357 Members | 2,014 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,357 software developers and data experts.

distutils

Hello again,

Is there any patch for python "distutils", for this
>>from distutils import log,dir_util
ImportError: cannot import name log
Regards,
Vedran

Aug 7 '07 #1
7 4070
ve***********@v-programs.com wrote:
Hello again,

Is there any patch for python "distutils", for this
>>>from distutils import log,dir_util
ImportError: cannot import name log
What version of Python are you running with? It looks as though there
may be something wrong with your installation if it's recent:

sholden@bigboy ~/Projects/Python
$ python
Python 2.5.1 (r251:54863, May 18 2007, 16:56:43)
[GCC 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)] on cygwin
Type "help", "copyright", "credits" or "license" for more information.
>>from distutils import log
import distutils.log
regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://del.icio.us/steve.holden
--------------- Asciimercial ------------------
Get on the web: Blog, lens and tag the Internet
Many services currently offer free registration
----------- Thank You for Reading -------------

Aug 7 '07 #2
On 7 kol, 14:53, Steve Holden <st...@holdenweb.comwrote:
vedrandeko...@v-programs.com wrote:
Hello again,
Is there any patch for python "distutils", for this
>>from distutils import log,dir_util
ImportError: cannot import name log

What version of Python are you running with? It looks as though there
may be something wrong with your installation if it's recent:

sholden@bigboy ~/Projects/Python
$ python
Python 2.5.1 (r251:54863, May 18 2007, 16:56:43)
[GCC 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)] on cygwin
Type "help", "copyright", "credits" or "license" for more information.
>>from distutils import log
>>import distutils.log
>>>

regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://del.icio.us/steve.holden
--------------- Asciimercial ------------------
Get on the web: Blog, lens and tag the Internet
Many services currently offer free registration
----------- Thank You for Reading -------------
Hello,

My version of python is 2.4 and I'am running it with Windows XP

Aug 7 '07 #3
ve***********@v-programs.com wrote:
On 7 kol, 14:53, Steve Holden <st...@holdenweb.comwrote:
>vedrandeko...@v-programs.com wrote:
>>Hello again,
Is there any patch for python "distutils", for this
>from distutils import log,dir_util
ImportError: cannot import name log
What version of Python are you running with? It looks as though there
may be something wrong with your installation if it's recent:

sholden@bigboy ~/Projects/Python
$ python
Python 2.5.1 (r251:54863, May 18 2007, 16:56:43)
[GCC 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)] on cygwin
Type "help", "copyright", "credits" or "license" for more information.
> >>from distutils import log
import distutils.log
Hello,

My version of python is 2.4 and I'am running it with Windows XP
Your installation must be corrupted, then:

Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Steve>\python24\python
Python 2.4.4 (#71, Oct 18 2006, 08:34:43) [MSC v.1310 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>from distutils import log

regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://del.icio.us/steve.holden
--------------- Asciimercial ------------------
Get on the web: Blog, lens and tag the Internet
Many services currently offer free registration
----------- Thank You for Reading -------------

Aug 7 '07 #4
On 7 kol, 18:00, Steve Holden <st...@holdenweb.comwrote:
vedrandeko...@v-programs.com wrote:
On 7 kol, 14:53, Steve Holden <st...@holdenweb.comwrote:
vedrandeko...@v-programs.com wrote:
Hello again,
Is there any patch for python "distutils", for this
from distutils import log,dir_util
ImportError: cannot import name log
What version of Python are you running with? It looks as though there
may be something wrong with your installation if it's recent:
sholden@bigboy ~/Projects/Python
$ python
Python 2.5.1 (r251:54863, May 18 2007, 16:56:43)
[GCC 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)] on cygwin
Type "help", "copyright", "credits" or "license" for more information.
>>from distutils import log
>>import distutils.log
Hello,
My version of python is 2.4 and I'am running it with Windows XP

Your installation must be corrupted, then:

Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Steve>\python24\python
Python 2.4.4 (#71, Oct 18 2006, 08:34:43) [MSC v.1310 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>from distutils import log
>>>

regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://del.icio.us/steve.holden
--------------- Asciimercial ------------------
Get on the web: Blog, lens and tag the Internet
Many services currently offer free registration
----------- Thank You for Reading -------------
Hi,

Is there any other solution I need this for script installing with
setuptools,now I was install and Python 2.5 too,but same error
again.

PS: I was try your previously example also:

cd c:\Python24\python

then:
>>from distutils import log - but same error again
any other solution?

Regards,
Vedran

Aug 7 '07 #5
ve***********@v-programs.com wrote:
Hello again,

Is there any patch for python "distutils", for this
>>>from distutils import log,dir_util
ImportError: cannot import name log
Regards,
Vedran
Are you sure you haven't written a module yourself called distutils.py ?
(that one will hide the standard distutils module)

--irmen
Aug 7 '07 #6
On 7 kol, 19:37, Irmen de Jong <irmen.NOS...@xs4all.nlwrote:
vedrandeko...@v-programs.com wrote:
Hello again,
Is there any patch for python "distutils", for this
>>from distutils import log,dir_util
ImportError: cannot import name log
Regards,
Vedran

Are you sure you haven't written a module yourself called distutils.py ?
(that one will hide the standard distutils module)

--irmen

I was search for all distutils files and folders and I'am sure there
is no distutils except "c:\Python24\Lib\distutils"

Regards,
Vedran

Aug 7 '07 #7
ve***********@v-programs.com wrote:
On 7 kol, 19:37, Irmen de Jong <irmen.NOS...@xs4all.nlwrote:
>Are you sure you haven't written a module yourself called distutils.py ?
(that one will hide the standard distutils module)
I was search for all distutils files and folders and I'am sure there
is no distutils except "c:\Python24\Lib\distutils"
What does
>>import distutils
distutils.__file__
'/usr/lib/python2.5/distutils/__init__.pyc'

print on your machine?

Peter

Aug 7 '07 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Isaac Jones | last post by:
Hello Python Community. I bring greetings from the Haskell community (http://www.haskell.org) ;) There has been a lot of discussion of late about creating a grand-unified build & distribution...
1
by: Mathieu Malaterre | last post by:
Hello, I thought this would be easy but I guess I didn't get the distutil feeling. I am trying to write a setup for install my package but I don't understand how to do that. organisation: ...
15
by: Colin J. Williams | last post by:
The distutils download page has: -------------------------------------------------------- Current stable release The current stable release is Distutils 1.0.2; you can download it as: *...
1
by: Terry Hancock | last post by:
Some time ago, I got the idea that I wanted to build image resources from vector graphic originals, instead of marshalling hundreds of tiny little icon images by hand. I wrote "BuildImage" to do...
7
by: Frans Englich | last post by:
This is silly. How do I access data files I've installed with distutils? In a portable, generic way, I want to find out what is the following path on most systems: ...
0
by: Maarten Sneep | last post by:
I'm trying to build PyBison on Mac OS X, and I'm running into some problems with the distutils. Just for starters: PyBison requires Pyrex. This is not a problem, and Pyrex seems to work without...
1
by: George van den Driessche | last post by:
Hi folks, I'm looking at packaging a project I'm working on using distutils. The project is for Windows and contains a COM server which needs registration, so the installer needs to be a little...
6
by: ajikoe | last post by:
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,...
0
by: newbie73 | last post by:
OS: Vista Python 2.5.2.2 (ActiveState Software Installation) Running latest Cygwin release The error generated is pasted below - please help. - Luis ***************************************
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
1
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. header("Location:".$urlback); Is this the right layout the...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
1
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.