473,396 Members | 1,866 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 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 4250
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 ***************************************
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.