Sonunda bir exe dosyası oluşturmak için PyInstaller'ı aldım, ama çalışmıyor. En kısa sürede bunu açar açmaz, bir iletişim bu olsun:PyInstaller Çalışma Zamanı Hatası? (R6034)
Runtime Error!
Program C:\.....\MCManager.exe
R6034
An application has made an attempt to load the C runtime library incorrectly.
Please contact the application's support team for more information.
İşte benim Spec var: Etrafa baktım
# -*- mode: python -*-
a = Analysis(['MCManager.py'],
pathex=['C:\\Users\\Lucas\\Dropbox'],
hiddenimports=[],
hookspath=None)
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name=os.path.join('dist', 'MCManager.exe'),
debug=False,
strip=None,
upx=True,
console=False,
icon='MCManager.ico')
app = BUNDLE(exe,
name=os.path.join('dist', 'MCManager.exe.app'))
ve kimse bu aynı sorun var gibi görünüyor.
Her şey değişirse, bu betik wxPython'u kullanır.
Pyinstaller 3.2 ve python 2.7.11 ile aynı sorunu yaşadım. Pyinstaller 3.1 geri almak sorunu çözüldü :) – mba7