Tentando instalar o wxpython, mas com vários erros, não importa o quanto eu tente fazer [duplicado]

0

Sou muito novo no Python e uso o terminal, e estou tendo muitos problemas para baixar o wxpython. Estou usando o Mac OS X Lion, a versão mais recente, e já tentei dois métodos:

  1. Se eu tentar o sudo pip install wxpython, obtenho:

    Downloading/unpacking wxpython
    Downloading wxPython2.8-win64-devel-2.8.12.1-msvc9x64.tar.bz2 (7.2Mb): 7.2Mb downloaded
    Running setup.py egg_info for package wxpython
      Traceback (most recent call last):
        File "<string>", line 14, in <module>
      IOError: [Errno 2] No such file or directory: '/Users/michelletyler1/build/wxpython/setup.py'
      Complete output from command python setup.py egg_info:
      Traceback (most recent call last):
    
    File "<string>", line 14, in <module>
    
    IOError: [Errno 2] No such file or directory: '/Users/michelletyler1/build/wxpython/setup.py'
    
  2. Eu também tentei o sudo port install py27-wxpython depois de instalar o MacPorts, e consegui:

    --->  Computing dependencies for py27-wxpython
    --->  Building py27-wxpython
    Error: org.macports.build for port py27-wxpython returned: command execution failed
    Please see the log file for port py27-wxpython for details:
       /opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_release_tarbal        ls_ports_python_py-wxpython/py27-wxpython/main.log
    To report a bug, follow the instructions in the guide:
        http://guide.macports.org/#project.tickets
    Error: Processing of port py27-wxpython failed
    

Além disso, tenho tentado descobrir como alterar meu $ PATH para que / usr / local / bin esteja à frente de / usr / bin (conforme aconselhado pelo médico brew), mas quando for editar meu ~ /.profile (o que eu acho que devo fazer do que encontrei on-line até agora), não funciona.

Obrigado pela ajuda!

    
por user1446687 11.06.2012 / 17:11

1 resposta

0

tente fazer o download de um instalador: link

Além disso, certifique-se de executar seu código python no modo de 32 bits ... ou seja,

#!/usr/bin/env python-32

import wx
    
por 13.06.2012 / 00:59