Ho installato wxPython 3.0.1.1
, ma non riesco a import wx
utilizzando Python 3.4.1
. Sto ottenendo il seguente errore:Come usare wxPython per Python 3?
Python 3.4.1 (v3.4.1:c0e311e010fc, May 18 2014, 00:54:21)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import wx
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'wx'
Tuttavia, posso import wx
se uso Python 2.7
(l'installazione di default nel mio OS X 10.9
):
Python 2.7.5 (default, Mar 9 2014, 22:15:05)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import wx
>>>
Come posso usare wxPython per Python 3, e in particolare per Python 3.4.1?
Forse è necessario aggiungere la posizione del modulo manualmente ai 'sys. path': 'sys.path.insert ("/posizione/di/wx ")' Ecco una descrizione più dettagliata: http://stackoverflow.com/questions/279237/import-a-module-from- a-relativo-path – jotrocken
@jotrocken Come posso farlo in modo che sia permanente? – Nick
http://stackoverflow.com/questions/3402168/permanently-add-a-directory-to-pythonpath – jotrocken