Questions tagged [executable]

An executable is a binary file that can be executed by the operating system.

An executable is a binary file that can be executed by the operating system.

3697 questions
1
vote
0 answers

How to convert a python/pygame file to an executable on Mac?

I need to convert my pygame game to an executable on Mac. I'm currently using python 3.6.5. I know there are modules like cx_freeze, py2app and pyinstaller out there but I couldn't find a clear and updated tutorial. Can anyone explain how to use…
1
vote
1 answer

Is it possible to include interpreter permissions in my python executable?

I have written a Python script to save time, which creates and writes files to my machine locally. (Python 3) I've turned it into an executable using PyInstaller, but in order to execute it the executable needs permissions on their machines - and…
1
vote
3 answers

How to create an executable jar which is executable (Maven-Jfoenix-Hibernate-IntelliJ) __ Can someone makes the subject resolve/close please

I try to generate an executable jar file from a project which use : Maven, JFX, JFoenix, Hibernate ... in IntelliJ I have tried many solution which we can found in different developer forum/website (StackOverflow included). Therefore no one works…
1
vote
1 answer

How do I check if a file is an executable in nim?

How do I check if a file is an executable on Linux using Nim? Thanks in advance.
joe
  • 463
  • 4
  • 17
1
vote
2 answers

Python Selenium GUI to an executable

I have never made an executable application before but from what I have read its pretty easy, using py2exe to generate the exe. But I have a GUI that uses Selenium to scrape data from a backend (No I can not use API calls). How do I add chromedriver…
1
vote
4 answers

Is there any way to get executable file for Dart console project?

Is there any way to compile my dart console project to executable file? Or maybe there are some utilities like launch4j for Java?
Denis Sablukov
  • 3,360
  • 2
  • 26
  • 31
1
vote
0 answers

how to make a py file to exe with pyinstaller when the py file dynamically creates and names data files and reads them after running starts?

I know how to help pyinstaller to catch data files with .spec file but It is only when the names of them are fixed before executing pyinstaller. Anyone knows how to make the py file to exe that dinamically creates and names data files(.txt) and…
jaewon
  • 11
  • 4
1
vote
1 answer

Get Python Executable to Write to Google Big Query

I created a Python script that works fine when I run it through Spyder. Basically, I'm querying some files and merging a couple data frames into one final data frame. All of this works perfectly fine. Then, I created an executable from this .py…
ASH
  • 20,759
  • 19
  • 87
  • 200
1
vote
1 answer

How can I protect Java/Javafx code from being seen by final user?

I have been working on a project alone for more than two years for a company. The project is a really big one using rxtx to communicate with a hardware device. I used Java 8 and JAVAFX for the UI. Now it is almost finished and I am starting to…
1
vote
0 answers

Size of Python Executable

I have a somewhat complex Python file that is literally 14K, when saved as a .py file. I used the following technique to convert it into an executable: pyinstaller.exe --onefile MyCode.py Now, the executable is 309MB. I deployed it to a VM, ran it,…
ASH
  • 20,759
  • 19
  • 87
  • 200
1
vote
4 answers

how to update .net windows application through internet

hey guys, i have a .net windows based application, now once i give the application to the client, is there any way i can update the application given to the client through internet, i mean i have a website, whenever client run my application,…
Abbas
  • 4,948
  • 31
  • 95
  • 161
1
vote
1 answer

Is it possible to get location of dependent libraries from within code

I want to load some dependent libraries from my program with dlopen function. Is it possible to know actual location of these libraries? eg, ldd shows all dependent libraries with paths in system. How does it work? Is it possible to get paths to…
dojo_user
  • 85
  • 10
1
vote
1 answer

Creating a Linux executable file for my Java application Jar file

I found that Packr is the best tool to use for creating an executable file for my Java application on Linux. The executable works perfectly on Linux, but i have a question about this tool: The tool forces me to embed JRE with the output folder…
Brad
  • 4,457
  • 10
  • 56
  • 93
1
vote
2 answers

Exporting application to be runnable

I build applications using C++, C# and Java. But when I try to copy the output file to another machine it won`t work ... and for the Java, I have to copy the source code, install the SDK and jun it through the CMD or through a compiler ... I want to…
sikas
  • 5,435
  • 28
  • 75
  • 120
1
vote
0 answers

Problems and doubts when using gcc's -shared and -pie options

I want to generate a PIE file which can be executed normally and can be linked dynamically by other files, so I used gcc's -fPIE, -shared, and -pie options. But I meet some problems. I have 3 files as follows: $ cat add.c int add(int a, int b) { …
1 2 3
99
100