fbs is a cross-platform PyQt5 packaging system which supports building desktop applications for Windows, Mac and Linux (Ubuntu, Fedora and Arch)
Questions tagged [fbs]
42 questions
1
vote
1 answer
how to solve fbs error 'Can not find path ./libshiboken2.abi3.5.13.dylib'?
I have been able to freeze a Python/PySide2 script with fbs on macOS, and the app seems to work.
However, I got some errors from the freeze process stating:
Can not find path ./libshiboken2.abi3.5.13.dylib.
Does anyone know how to fix that?

Thomas
- 11
- 1
1
vote
0 answers
HOW TO BEAT ORDERSEND ERROR 130 IN METATRADER 4
I'm getting error
EURUSD,H1: OrderSend failed with error #130
I'm new to programming Experts Please guide where I am making mistake?
I have pasted code on here
https://pastebin.com/S2fnSgxFenter code here

Saad Ahmad
- 36
- 6
1
vote
0 answers
How to include an exe with your pyqt5 application using fbs
Looking to include an .exe file with my PyQt5 application so that changes made in the application can be sent to the .exe. The .exe file is a command line interface that needs to know a file location in order to find a document, or send that…

user3677694
- 11
- 1
1
vote
1 answer
Application name displayed as Unknown with fbs and PyQt5
I wrote an application with fbs and PyQt5.
When starting any window, the application name is displayed as "Unknown" on Ubuntu 19.04.
I added the lines:
app =…

lumpigerAffe
- 111
- 1
- 8
1
vote
1 answer
How to reference resource file in PyQt stylesheet using fbs
I am building a PyQt5 application using fbs and (following this tutorial) have placed the image files in the directory /src/main/resources/base/images. This way the image resources are available to the Python code using…

user1972265
- 25
- 5
0
votes
0 answers
Is there a way to get printouts from an pyqt5 application built with fbs for Windows without being a debug build?
Use case: Would like to add CLI functionality to a application built with fbs.
When building for Ubuntu it prints out everything when I run this application from the command line, which is what I want. Building with the same settings but for Windows…

Klars
- 1
0
votes
3 answers
FileNotFoundError: fbs could not find executable 'makensis'. Please install NSIS and add its installation directory to your PATH envir onment variable
I wanted to create an installer for my exe programm (with fbs). Then I saw that I need to install NSIS (Error: FileNotFoundError: fbs could not find executable 'makensis'. Please install NSIS and add its installation directory to your PATH…

Timur Juten
- 21
- 1
- 2
0
votes
2 answers
Running Python script with QProcess after freeze
I am using PyQt5 and freezing the app using fbs.
The app allows for users to run Python scripts. I then save the script in a Python file and run a QProcess to run that file.
The scripts that will be running are written by the user.
I want to be able…

T.J.
- 61
- 5
0
votes
0 answers
fbs run result in No module named src
I am trying to build executable file with fbs according this web page (https://build-system.fman.io/manual/). Hierarchy of my structure looks like this hierarchy:
When I try to fbs run command I get error statement
File…

vannie92
- 1
- 3
0
votes
1 answer
How can I implement an .ui file to package a PyQt5 application with fbs?
EDIT: My question might duplicate with this one: link. I was used to search through Google, haven't realized I should look through Stack search bar.
I have been trying to package a PyQt5 application with Pyinstaller (without success) and decided to…

comte_mo
- 11
- 4
0
votes
2 answers
Freezing my app with Fbs/PyInstaller result in fail to execute pyi_rth_qt5plugins when starting on an other pc
I'm trying to freeze my python application using Fbs (https://build-system.fman.io/)
After running to some libs error that I fixed I was able to freeze it without any issue. I can perfectly start the app on my computer. But on an other computer I…

MrLixm
- 1
- 3
0
votes
1 answer
OSError: [WinError 126] The specified module could not be found in pyinstaller
I am a beginner in python and trying to convert a .py script into .exe using a derivative of pyinstaller known as fbs, so this question is probably dumb, I apologize in advance.
I used it following the instructions using python 3.6.7 and importing…

curiousrw
- 1
- 2
0
votes
1 answer
Can't package up my PyQt5 application in PyCharm
I am trying to use FBSENV to package my software however my code in my main.py gives me:
ModuleNotFoundError: No module named 'fbs_runtime'
my import statement is:
from fbs_runtime.application_context.PyQt5 import ApplicationContext

Amadeus Aleksei
- 41
- 8
0
votes
1 answer
PyQt5 : Wrapped c/c++ object has been deleted
I am trying to create my own graphicsitem with a circle and its label at the center.
class circle(QGraphicsItem):
def __init__(self, radius=None, name=None, x=None, y=None, parent=None):
super(circle, self).__init__(parent)
…

Blaine
- 576
- 9
- 30
0
votes
1 answer
PyQt5 creating pdfs using pdfkit - wkhtmltopdf.exe window popup with each pdf
I've built an application using PyQt5 to process some data and generate a pdf report using pdfkit. If I run the application through PyCharm this works well. I've packaged the application into an executable using fman build system (PyInstaller…

ChiPhi85
- 61
- 5