-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
wine install of python in x86_64 system #7
Comments
Likewise, to uninstall without GUI: wine msiexec /x python-2.7.2.amd64.msi /qn More options command line options: |
However, on a x86_64 Linux system (ubuntu 11.04 64 bits), wine (1.2.2) seems unable to run either Python 2.7.2 for 32 or 64 bits. Calling the python-wine script gives the following error when Python 2.7 is installed: Trying to load PE image for unsupported architecture (AMD-64) And the following for Python 64 bits: Trying to load PE image for unsupported architecture (AMD-64) Based on this, I would recommend to remove the dependency on the windows binaries of Python, and use native python if possible. |
This is just a temporal solution until we manage to Python with mingw, which should be possible since there are some patches available. |
What are the barriers to using the system python installation? |
@davidhoyt maybe wanting to create binarys for Windows from Ubuntu like me. (https://milkator.wordpress.com/2014/07/19/windows-executable-from-python-developing-in-ubuntu/) There are many other reason that will require the Windows version... eg, running Windows-only python-based sofrware. |
Under ubuntu 11.04 64 bits, the installation of the python msi through wine is not possible using the graphical interface of the msi installer because pressing the next button doesn't start the installation, and gives this error:
Trying to load PE image for unsupported architecture (AMD-64)
err:msi:ACTION_CallDllFunction failed to load dll L"C:\users\andres\Temp\msi3948.tmp" (193)
fixme:msi:ControlEvent_SpawnWaitDialog Doing Nothing
Trying to load PE image for unsupported architecture (AMD-64)
However, the installation can be carried out without interface by using the following command:
$wine msiexec /i Downloads/python-2.7.2.amd64.msi /qn TARGETDIR=C:\Python27 ALLUSERS=1
The text was updated successfully, but these errors were encountered: