Pregunta

Estoy obligado a actualizar a Python 2.6 y tengo problemas al usar Python numérico ( NumPy ) con Python 2.6 en Windows. Me aparece el siguiente error ...

Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    from numpy.core.numeric import array,dot,all
  File "C:\svn\svn_urbansim\UrbanSimDev\Builds\working\urbansim\Tools\Python26\lib\site-packages\numpy\__init__.py", line 39, in <module>
    import core
  File "C:\svn\svn_urbansim\UrbanSimDev\Builds\working\urbansim\Tools\Python26\lib\site-packages\numpy\core\__init__.py", line 5, in <module>
    import multiarray
ImportError: Module use of python25.dll conflicts with this version of Python.

Parece que el módulo existente está intentando usar el archivo python25.dll . ¿Hay alguna manera de decirle que use el archivo python26.dll sin modificar el código fuente?

¿Fue útil?

Solución

¿Cómo lo instalaste? NumPy actualmente no tiene un binario de Python 2.6.

Si tiene LAPACK / ATLAS / here .

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top