Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
pyinstaller
#6
The Python version you use now is missing some libraries that Pyinstaller need.
Can try this as a fix without having to rebuild.
sudo apt-get install libpython3.7-dev
pyinstaller Wrote:PyInstaller is tested against Windows, Mac OS X, and GNU/Linux. However,
it is not a cross-compiler: to make a Windows app you run PyInstaller in Windows;
to make a GNU/Linux app you run it in GNU/Linux, etc.
So need to build on each platform.
So now the have build hello.py on two platforms.
Could make it like this so it use right executable on OS it's on.
import platform
import subprocess

if platform.system() == 'Windows':
    subprocess.run('hello.exe')
elif platform.system() == 'Linux':
    subprocess.run('./hello')
else:
    print('Mac')
Reply


Messages In This Thread
pyinstaller - by astral_travel - May-23-2020, 01:24 PM
RE: pyinstaller - by snippsat - May-23-2020, 02:04 PM
RE: pyinstaller - by astral_travel - May-23-2020, 02:40 PM
RE: pyinstaller - by snippsat - May-23-2020, 03:19 PM
RE: pyinstaller - by astral_travel - May-23-2020, 03:37 PM
RE: pyinstaller - by snippsat - May-23-2020, 04:19 PM
RE: pyinstaller - by astral_travel - May-23-2020, 04:26 PM
RE: pyinstaller - by snippsat - May-23-2020, 05:35 PM
RE: pyinstaller - by astral_travel - May-23-2020, 05:41 PM
RE: pyinstaller - by snippsat - May-23-2020, 10:05 PM
RE: pyinstaller - by pyzyx3qwerty - May-24-2020, 09:33 AM
RE: pyinstaller - by snippsat - May-24-2020, 10:14 AM
RE: pyinstaller - by pyzyx3qwerty - May-24-2020, 10:20 AM
RE: pyinstaller - by snippsat - May-24-2020, 11:41 AM
RE: pyinstaller - by astral_travel - May-24-2020, 04:17 PM
RE: pyinstaller - by pyzyx3qwerty - May-24-2020, 05:25 PM
RE: pyinstaller - by astral_travel - May-24-2020, 05:38 PM
RE: pyinstaller - by pyzyx3qwerty - May-24-2020, 05:38 PM
RE: pyinstaller - by astral_travel - May-24-2020, 05:42 PM
RE: pyinstaller - by pyzyx3qwerty - May-24-2020, 05:43 PM
RE: pyinstaller - by astral_travel - May-24-2020, 05:46 PM
RE: pyinstaller - by snippsat - May-24-2020, 05:54 PM
RE: pyinstaller - by astral_travel - May-24-2020, 06:10 PM
RE: pyinstaller - by astral_travel - May-24-2020, 08:20 PM
RE: pyinstaller - by snippsat - May-24-2020, 09:06 PM
RE: pyinstaller - by astral_travel - May-25-2020, 04:25 PM
RE: pyinstaller - by snippsat - May-25-2020, 04:55 PM
RE: pyinstaller - by astral_travel - May-25-2020, 06:02 PM
RE: pyinstaller - by snippsat - May-25-2020, 06:24 PM
RE: pyinstaller - by astral_travel - May-25-2020, 06:30 PM
RE: pyinstaller - by snippsat - May-25-2020, 06:38 PM
RE: pyinstaller - by astral_travel - May-27-2020, 06:38 PM
RE: pyinstaller - by astral_travel - May-28-2020, 02:15 PM
RE: pyinstaller - by snippsat - May-28-2020, 03:29 PM
RE: pyinstaller - by astral_travel - May-28-2020, 04:25 PM
RE: pyinstaller - by snippsat - May-28-2020, 05:07 PM
RE: pyinstaller - by astral_travel - May-28-2020, 05:16 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020