pyinstaller Questions
6
Solved
Does anybody know a way to embed an icon in a Python script such that when I create my standalone executable (using pyinstaller) I don't need to include the .ico file? I know this is possible with ...
Areopagite asked 29/3, 2012 at 16:27
8
The Problem
Im trying to turn a python file into an EXE file, however I seem to be running into the same problem every single time, whether it is CX_Freeze or Pyinstaller. I just tried using pyins...
Pugliese asked 14/1, 2017 at 4:48
16
Solved
I'm trying to build a one-file EXE with PyInstaller which is to include an image and an icon. I cannot for the life of me get it to work with --onefile.
If I do --onedir it works all works very we...
Fuller asked 6/10, 2011 at 13:20
2
I am trying to make an .exe file of a python script which checks sentence similarity. The script uses the following libraries:
from sentence_transformers import SentenceTransformer
from sklearn.met...
Brycebryn asked 13/4, 2022 at 20:50
4
Solved
I have been all over Google, Reddit, StackOverflow, PyInstaller docs, I can't figure this out.
I'm trying to set my icon for my application, but it will not work. The icon is applied to the ...
Examination asked 5/8, 2018 at 19:46
3
I'm trying to make executable from Scrapy project. I've noticed that I have to say PyInstaller what scrapy modules it has to load. The problem is that there is a lot of these modules.
pyinstaller...
Bandylegged asked 22/10, 2017 at 19:28
15
Solved
I try to compile a Python project under Windows 7 using PyInstaller. The project works fine, there are no issues, however when I try to compile it the result doesn't work. Though I get no warnings ...
Ipswich asked 8/9, 2014 at 21:34
1
I'm making onefile executables with pyinstaller on windows 10. I'm including data files (pickle files) by editing the .spec file...
How can I store changes made to these files during run time? My...
Frescobaldi asked 9/10, 2016 at 11:7
4
Solved
I create two python files, and the directory/file relations is as follows:
mytest---
|---mycommon.py
|---myMainDir---
|----myMain.py
In mycommon.py:
def myFunc(a):
...
And in myMain.py:
...
Jeminah asked 19/8, 2015 at 10:57
1
I have my exe application which i created with pyinstaller and bundled a folder while creating my exe which is working fine. In order to access any file from folder which i bundled while creating e...
Cleland asked 10/6, 2021 at 13:51
3
Solved
I downloaded pyinstaller in order to turn my python scripts into an executable program. I have a main script ((homepage.py) that, when ran, it would display a window with two buttons (button1 and b...
Livialivid asked 10/7, 2018 at 13:11
10
This is my first time posting a question here as most of my questions have already been answered by someone else! I am working on a GUI application in python and am attempting to use pyinstaller to...
Grandioso asked 14/6, 2016 at 14:49
13
I'm working in Windows, using PyInstaller to package a python file. But some error is occuring:
Traceback (most recent call last):
File "<string>", line 2, in <module>
File "D:\Usefu...
Infection asked 27/2, 2013 at 14:34
4
I have a python GUI application. And now I need to know what all libraries the application links to. So that I can check the license compatibility of all the libraries.
I have tried using strace, ...
Idolize asked 4/3, 2016 at 13:11
2
I am trying to convert my .py file to an .exe file and I have tried all methods (auto-py-to-exe, pyinstaller, cz_freeze) and it does create the exe file but it always gives an error or the window o...
Expansive asked 1/11, 2021 at 16:34
8
Solved
I have an application written in Python and 'compiled' with PyInstaller. It also uses PyQt for the GUI framework.
Running this application has a delay of about 10 seconds before the main window lo...
Lexi asked 27/2, 2012 at 18:8
4
Solved
I'm using pyinstaller to generate an .exe file for my single python file, but the size is more than 30MB and the startup is very slow. From what I have gathered is that pyinstaller by default bundl...
Miscreance asked 23/3, 2019 at 8:57
5
Solved
I have a desktop app that I'm working on and I am using PyInstaller to generate de distribution files.
I have chosen PyInstaller over py2exe because it is very easy to use and I don't need to car...
Remodel asked 16/12, 2013 at 18:21
6
Solved
All of the documentation for PyInstaller talks about including individual files.
Is it possible to include a directory, or should I write a function to create the include array by traversing my inc...
Rawdon asked 4/7, 2012 at 4:44
4
Solved
Now i'm working with Pyinstaller.
I have an script which get images from a img folder..
/python
|----/img
|----|----icon1.ico
|----|----icon2.ico
|----maint.py
My script to generate .exe is
pyinst...
Literate asked 16/12, 2013 at 2:54
5
I want to convert myscript.py to a exexutable file. i am using raspberry pi(raspbian) and python 2.7.
I am issuing the following command
sudo pip install PyInstaller
sudo pyinstaller myscript.py...
Kendallkendell asked 28/1, 2016 at 9:34
7
Solved
Yes I want to create a run configuration in PyCharm to run Pyinstaller and get my executable. According to the Pyinstaller documentation you should be able to locate an python script called pyinsta...
Lafave asked 25/11, 2015 at 0:36
2
I keep getting the following error when running the exe file generated from plotly-dash codes using PyInstaller.
AttributeError: 'FrozenImporter' object has no attribute 'filename'
Did some in-...
Lumpy asked 25/6, 2019 at 16:11
6
Solved
I'm using Python 3.4.4 on Centos7.
I've created a python program on my local machine that makes use of qt modules. The program is running fine on my local machine.
I'm now trying to create an exec...
Highfalutin asked 28/3, 2017 at 10:24
7
Solved
I have an issue when i compile a PyQt code with pyinstaller.
I use this line to compile:
c:\Anaconda3\Scripts\pyinstaller.exe -y -F --distpath="." MyQt.py
then I get this error message:
File ...
Generalization asked 7/12, 2017 at 10:31
© 2022 - 2025 — McMap. All rights reserved.