Issue3150
Created on 2008-06-20 01:59 by hdiogenes, last changed 2008-06-20 02:47 by benjamin.peterson.
| msg68439 (view) |
Author: Humberto Diogenes (hdiogenes) |
Date: 2008-06-20 01:58 |
|
The new multiprocessing module is not being installed:
$ python3.0
Python 3.0b1+ (py3k:64417, Jun 19 2008, 21:25:46)
[GCC 4.0.1 (Apple Inc. build 5483)] 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
>>>
After adding it to Makefile.pre.in and rebuilding/reinstalling:
$ python3.0
Python 3.0b1+ (py3k:64417M, Jun 19 2008, 22:50:25)
[GCC 4.0.1 (Apple Inc. build 5483)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import multiprocessing
>>>
|
| msg68440 (view) |
Author: Jesse Noller (jnoller) |
Date: 2008-06-20 02:00 |
|
Is this a make && make install?
|
| msg68442 (view) |
Author: Humberto Diogenes (hdiogenes) |
Date: 2008-06-20 02:16 |
|
Jesse, not install, but altinstall:
sudo rm -fr /usr/local/lib/python3.0
make clean
make && sudo make altinstall
Forgot to mention that it was originally reported by Rodrigo Fenrrir.
|
| msg68443 (view) |
Author: Jesse Noller (jnoller) |
Date: 2008-06-20 02:20 |
|
Thanks. This is what I get from running out of subversion all the time.
|
| msg68444 (view) |
Author: Benjamin Peterson (benjamin.peterson) |
Date: 2008-06-20 02:47 |
|
I think r64422 should do the trick.
|
|
| Date |
User |
Action |
Args |
| 2008-06-20 02:47:49 | benjamin.peterson | set | status: open -> closed resolution: fixed messages:
+ msg68444 nosy:
+ benjamin.peterson |
| 2008-06-20 02:20:26 | jnoller | set | messages:
+ msg68443 |
| 2008-06-20 02:16:17 | hdiogenes | set | messages:
+ msg68442 |
| 2008-06-20 02:15:32 | jnoller | set | keywords:
+ easy |
| 2008-06-20 02:00:55 | jnoller | set | assignee: jnoller |
| 2008-06-20 02:00:33 | jnoller | set | nosy:
+ jnoller messages:
+ msg68440 |
| 2008-06-20 01:59:11 | hdiogenes | create | |
|