executable Questions
3
I want to create .exe file from .py. If I run .py file it works well and I have no problem with it. But when I run .exe file created by pyinstaller I can not input(type) anything in command line.
...
Masuria asked 23/10, 2019 at 13:9
8
Solved
I am using Ubuntu on VirtualBox. How do I add pyinstaller to the PATH?
The issue is when I say
pyinstaller file.py
it says pyinstaller command not found
It says it installed correctly, and ac...
Sexcentenary asked 16/12, 2018 at 1:21
5
I often see the terms "binary" and "executable" seemingly used interchangeably. Isn't it two terms to describe the same thing; the executable output program after a compilation ...
Tousle asked 20/1, 2020 at 15:22
6
Solved
I am learning Pyomo and trying to use ipopt to solve an example question. but initially, I have installed package, then it always shows that there is not a ipopt found. After that, I reinstalled ma...
Antibaryon asked 19/11, 2020 at 13:46
1
I've been playing around with/debugging/disassembling binaries on the iPhone.
The first obstacle is that the binaries are encrypted and dissembler can not read them. This can be overcome by dumpin...
Reactivate asked 24/10, 2011 at 4:5
2
Solved
I am creating a python script that should modify itself and be portable.
I can achieve each one of those goals separately, but not together.
I use cx_freeze or pyinstaller to pack my .py to exe, so...
Authority asked 17/8, 2020 at 7:49
15
Solved
When I use the command:
pyinstaller.exe --icon=test.ico -F --noconsole test.py
All icons do not change to test.ico. Some icons remain as the pyinstaller's default icon.
Why?
All icon change in
wi...
Burnt asked 27/3, 2015 at 0:5
3
Solved
So I can use PyInstaller to make a one-file executable and to make a standard executable among other files in a folder.
But how do I turn Python files into an MSI installer so that it's fool-proof...
Briscoe asked 15/6, 2018 at 16:38
3
How is it that an executable can work on both AMD and Intel systems? Aren't AMD's and Intel's instruction sets different? How does the executable work on both? How exactly do they compile the files...
Entity asked 23/8, 2015 at 15:34
5
Solved
I have been searching for many similar posts about this but I still can't find my answer. I want to convert a .java program into a Linux executable file, without the .jar extension. How can I do it...
Sinclare asked 3/4, 2015 at 9:59
11
Solved
I was told to use a disassembler. Does gcc have anything built in? What is the easiest way to do this?
Sauterne asked 26/2, 2011 at 8:38
4
Solved
I think I'm missing something simple
I have a python poetry application:
name = "my-first-api"
version = "0.1.0"
description = ""
readme = "README.md"
packag...
Cornfield asked 1/5, 2023 at 8:58
2
I recently came across this post describing the smallest possible ELF executable for Linux, however the post was written for 32 bit and I was unable to get the final version to compile on my machin...
Akeyla asked 19/11, 2018 at 21:3
12
Solved
I've got an executable file, and I would like to know which version(s) of the Microsoft .NET Framework this file needs to be started.
Is there an easy way to find this information somewhere?
(So fa...
Nonstriated asked 28/11, 2008 at 14:42
3
On many occasions I have needed a path to an executable or command line tool, for example: notepad or kubectl. Whilst using PowerShell, the executable is available, but the physical location of the...
Hoke asked 25/6, 2021 at 13:49
26
Solved
I know this question has been asked before but I still haven't seen a satisfactory answer, or a definitive "no, this cannot be done", so I'll ask again!
All I want to do is get the path to the cur...
Colburn asked 6/10, 2009 at 21:52
7
C standard library provides functions system and popen to run a command. But is there a portable way to detect if a command exists?
Summerwood asked 21/5, 2009 at 0:27
3
Solved
What is the best method for identifying an executable within Python?
I found that the following function will find the notepad executable
from shutil import which
which('notepad')
Out[32]: 'C:\...
Furthermore asked 28/3, 2019 at 10:8
5
I was able to successfully create a .exe file from an executable jar. From Launch4j I can test the wrapper, and the output on the log is what I expect. However if I try to run the exe from the comm...
Cliquish asked 30/6, 2015 at 23:20
19
Solved
This is a batch file in Windows.
Here is my .bat file
@echo off
copy "C:\Remoting.config-Training" "C:\Remoting.config"
"C:\ThirdParty.exe"
This works fine except the .bat file leaves the com...
Cathiecathleen asked 3/2, 2009 at 14:47
3
Solved
There is a program developed for linguistic research (http://people.csail.mit.edu/mcollins/code.html). When I try to run the parser using Git bash terminal on Windows, I get the error:
bash: cannot...
Hawaii asked 6/4, 2021 at 14:45
3
Solved
I'm currently running the openstack executable and it generates python deprecation warnings.
After some searching I did find this howto.
The relevant part is here:
Use the PYTHONWARNINGS Environme...
Sat asked 22/9, 2021 at 13:53
21
Solved
I simply want to run an executable from the command line, ./arm-mingw32ce-g++, but then I get the error message,
bash: ./arm-mingw32ce-g++: No such file or directory
I'm running Ubuntu Linux 10.1...
Mcgean asked 16/10, 2010 at 14:0
5
Solved
So a .exe file is a file that can be executed by windows, but what exactly does it contain? Assembly language that's processor specific? Or some sort of intermediate statement that's recognized by ...
Serle asked 30/9, 2009 at 0:48
5
Solved
I'd like to strip as much as I can - on Linux: an ELF. I only want in there the stuff I need to run it.
I tried using strip:
strip --strip-all elf
But it doesn't seem to do a good job: nm still...
Monaco asked 14/11, 2010 at 18:44
1 Next >
© 2022 - 2024 — McMap. All rights reserved.