Ich benutze Ubuntu und habe Python 2.7.5 und 3.4.0 installiert. In Python 2.7.5 kann ich eine Variable erfolgreich zuweisen x = Value('i', 2)
, aber nicht in 3.4.0. Ich bekomme:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python3.4/multiprocessing/context.py", line 132, in Value
from .sharedctypes import Value
File "/usr/local/lib/python3.4/multiprocessing/sharedctypes.py", line 10, in <
module>
import ctypes
File "/usr/local/lib/python3.4/ctypes/__init__.py", line 7, in <module>
from _ctypes import Union, Structure, Array
ImportError: No module named '_ctypes'
Ich habe gerade durch die Installation der Quelle von 3.4.0 auf 3.3.2 aktualisiert. Es wurde in /usr/local/lib/python3.4 installiert .
Habe ich korrekt auf Python 3.4 aktualisiert?
Eines ist mir aufgefallen, dass Python 3.4 in usr / local / lib installiert ist, während Python 3.3.2 noch in usr / lib installiert ist , sodass es nicht überschrieben wurde.
_ctypes
wurde nicht erstellt, da die libffi-dev
Abhängigkeit nicht verfügbar war. Verwenden Sie stattdessen die Deadsnakes PPA .