Installer build for Linux #1877
Answered
by
marcelotduarte
CanYing0913
asked this question in
Q&A
-
I want to achieve the same effect as I build .dmg and .msi installer on Linux. What is the specific Linux command to run my setup.py to do so? Appreciate for any help. |
Beta Was this translation helpful? Give feedback.
Answered by
marcelotduarte
Apr 30, 2023
Replies: 1 comment 7 replies
-
cx_Freeze has bdist_rpm. In a future I plan to implement support to appimage or snap. |
Beta Was this translation helpful? Give feedback.
7 replies
Answer selected by
CanYing0913
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cx_Freeze has bdist_rpm.
Using Ubuntu/Debian you can need to install the rpm package:
sudo apt install rpm
I hope that you can convert the rpm to deb or rpm to tgz using the alien package:
sudo apt install alien
In a future I plan to implement support to appimage or snap.