-
Website
http://www.jessenoller.com/ -
Original page
http://jessenoller.com/2008/06/19/python-26-and-30-beta-1-released/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
jackdied
2 comments · 1 points
-
dougnapoleone
3 comments · 3 points
-
Michael Foord
6 comments · 7 points
-
llimllib
7 comments · 2 points
-
Doug Hellmann
4 comments · 3 points
-
-
Popular Threads
-
Dive Into Python 3: The Foreward
1 week ago · 12 comments
-
Dive Into Python 3: The Foreward
Great work.
$ python2.6
Python 2.6b1 (r26b1:64398, Jun 20 2008, 00:33:25)
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import multiprocessing
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named multiprocessing
woot:Python-2.6b1 jesse$ ./python.exe
Python 2.6b1 (r26b1:64398, Jun 19 2008, 20:25:19)
[GCC 4.0.1 (Apple Inc. build 5484)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import multiprocessing
>>> dir(multiprocessing)
['Array', 'AuthenticationError', 'BoundedSemaphore', 'BufferTooShort', 'Condition', 'Event', 'JoinableQueue', 'Lock', 'Manager', 'Pipe', 'Pool', 'Process', 'ProcessError', 'Queue', 'RLock', 'RawArray', 'RawValue', 'Semaphore', 'TimeoutError', 'Value', '__all__', '__author__', '__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__', '__version__', '__warningregistry__', '_multiprocessing', 'active_children', 'allow_connection_pickling', 'cpu_count', 'current_process', 'freeze_support', 'get_logger', 'log_to_stderr', 'os', 'process', 'sys']
>>>
So, I think it may be something in the compile step failing for you, or something else entirely. If you want, you can email me at jnoller at gmail dot youknowwhat.
~$ python
Python 2.6b1 (r26b1:64398, Jun 19 2008, 07:34:18)
[GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import multiprocessing
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named multiprocessing
>>>
Perhaps it's related to the fact I have multiple Python interpreters installed (2.3 till 3.0)? I'll see if I can debug the issue and otherwise I'll send you that email. Thanks!