Most voted "pyinstaller" questions
Pyinstaller creates an executable including Python and all dependencies in a single package "converting" into a standalone application.
Learn more…25 questions
Sort by count of
-
2
votes1
answer105
viewsAdding files to pyinstaller
When I use the option --onefile, my program cannot find the files added to .exe. I don’t know which path to specify for my program to find the files. My code is like this: import winsound…
-
2
votes1
answer172
viewsExecutable with Hidden console opening console
I’m making a code that uses libraries a lot the and sys. When I was converting to executable (.exe) I used pyinstaller to hide the command prompt but still remains a prompt open during the long run…
-
2
votes1
answer487
viewsProblems with additional files in Pyinstaller
I’m building a EXE with the way Onefile of Pyinstaller (by auto-py-to-exe). I need two files to be added, one .py from where the main will pull the functions and a jpeg image so that the computer…
-
2
votes2
answers76
viewsHow to add images to a program generated by Pyinstaller?
I am creating an executable using the Python programming language and its pyinstaller library. To create the interface, I am using the Tkinter library. In the executable interface I put an image…
-
2
votes0
answers390
viewsWhy is my Python executable barred by Antivirus? And how do I fix it?
I was creating an executable with pyinstaller from a simple Python file. My antivirus Avast blocked the executable claiming to have viruses, although it did not have. So I made the following code in…
-
1
votes1
answer2106
viewsHow to make Python program run in 32 and 64 bits
I have a program made in Python(3.5) under 64 bit operating system, there is the possibility of I make it run in 64 and also in 32 bits in windows? NOTE: I used Pyinstaller to compile the program to…
-
1
votes1
answer1879
viewsHow to use Pyinstaller in Python 3?
I’m developing a system with the image structure below: How do I create an executable for "Transmorphus.py"? I have tried using Pyinstaller and never opens the system. I’ve searched several sites…
-
1
votes0
answers35
viewsProblems in transforming . py to . exe from my project to recognize images with opencv
I have a project of recognizing images using opencv, I separated it into 3 packages plus the code of the graphical interface in Tkinter that controls the activation. It works normally, but when I…
-
0
votes1
answer2338
viewsPython executable problem generated by pyinstaller
I made a simple software in python with graphical interface. I built it with pyinstaller and while trying to open the generated executable, the windows command prompt is also opened every time. I…
-
0
votes0
answers214
viewslib not found: Pyinstaller
I am trying to assemble an executable, from a python code by the Pyinstaller library. But when executing the code by: C:\...>pyinstaller --name Aplicativo Aplicativo.pyw is generated an amount of…
-
0
votes1
answer50
viewsProblem with pyinstaller+ os.getcwd() on MAC OS
After numerous problems with Tkinter and Pyinstaller, I finally managed to make a Unix executable application work normally on MAC High Sierra. But inside my application folder, there is a folder…
-
0
votes1
answer379
viewsHow to compile multiple python files into one using Pyinstaller?
I am making a calculation program that is divided into 3 files py: graphical interface file (cerberus.py) file making the calculations(calc.py) file responsible for data plotting(plot.py) I tried to…
-
0
votes0
answers170
viewsProblems in the installation of the BETS and rbcb package
Good afternoon! I’m having trouble installing the BETS package ( Brazilian Economic Time Series: Basic Usage) and rbcb (Central Bank of Brazil data by Wilson Freitas). In the first, the R says that…
-
0
votes1
answer211
viewsPyinstaller generating error to import numpy library
Good afternoon, I am creating a python project, and need to get a executable . exe to run in any windows without having python installed. However, what happens is that when I open the generated…
-
0
votes1
answer680
viewsHow to turn Selenium into an executable (python)
I went to make a bot with Selenium, and on my machine ran smoothly until the executable, but when passing to a friend’s machine is giving a boring error and I can not solve. from selenium import…
-
0
votes0
answers35
viewsParameter "-noconsole" is not working
I have a Python project that uses Pyqt5 and when I run the executable through pyinstaller with the command: pyinstaller --noconsole --onefile --windowed main.py is generated the executable where I…
-
0
votes1
answer122
viewsWhen I run code outside of IDLE (PYTHON 3.7) the created Tkinter window does not appear
I’m beginner and was studying Tkinter and developed this code, within IDLE it works perfectly, but with advancing I turned it into executable but does not rotate, even inside the cmd does not…
-
0
votes0
answers14
viewsUsing Pyinstaller in Ubuntu
Good morning good people In my Ubuntu 20.04 created a file . py and tried to package using pyinstaller. a = "Deu certo" print(a) He created but when I went to dist and ran the operating system…
-
0
votes0
answers51
viewsError generating python exe with pandas-gbq
I am trying to convert a font to exe. Type the command: pyinstaller --onefile arquivo.spec Shows that it was performed successfully, but when I click on exe, the message appears ImportError: Missing…
-
0
votes0
answers19
viewsHow I convert a keylogger to exe
Guys, I’ve been trying for a while to convert my program to exe, I’ve used several ways to do this, so far all gave errors. My code works perfectly in python but in exe it always returns an error. I…
-
0
votes0
answers16
viewsCx_freeze. Error with Cx_oracle client when running the program on another computer
I developed a GUI program using Pyqt5 for users to feed a "Mysql" database (which is installed on a server on the same network as other computers). However this program needs to get information from…
-
-1
votes3
answers1939
viewsI created an executable with pyinstaller and it does not run
Hello I created a executable with the pyinstaller pyinstaller --onefile -c app.py contents of the archive app.py print("hello world") x = input("Qual seu nome?") print(x) after generated while…
pyinstallerasked 4 years, 3 months ago Acácio Silva 11 -
-2
votes1
answer148
viewsPyinstaller generating error when compiling several scripts
Hello good night I am compiling python 3.6 I am using the pyinstaller compiler for a script works perfectly. The problem is when I have to generate several scripts that should be used for the…
pyinstallerasked 6 years ago David Pereira 1 -
-3
votes2
answers126
viewsGenerate executable with more than one file . py
Good evening guys. I did a little project in Python and I’m trying to generate the executable. However, I can’t find any tutorial to teach you how to do this with more than one file. In the case of…
-
-5
votes1
answer75
viewsERROR STARTING . EXE PYTHON
Hello, I’m creating a chatbot in Python using the Chatterbot library, so I tried to turn my simple Python code into a file. exe so other people can test, I’m using pyinstaller. I installed it by…