Questions tagged [python-standalone]

44 questions
0
votes
0 answers

Python app converted as standalone for Windows with Pyinstaller works but takes 23 sec to launch

I made an app with Python 3.7 and PyQt5 which works fine on Windows 10 without problem and launches rapidly (<1 sec) when launched it from the text editor. I then converted it with PyInstaller in a standalone app. It works also fine but takes around…
ecjb
  • 5,169
  • 12
  • 43
  • 79
0
votes
2 answers

Fail to build a standalone executable file on MacOS

I want to make a standalone executable out of a script on a MacOS (10.14). The script is my_app.py and has the following content: #!/usr/bin/env python import os.path import csv import pandas as pd ##1 open the…
ecjb
  • 5,169
  • 12
  • 43
  • 79
0
votes
1 answer

compile python application with setup.py

I already pointed at the problem of exporting my pygame into an executable for distribution purpose. I still have the problem that when I run the setup.py (I use python version 3.7.0) and build the app, the app directly crashes and I cannot open the…
gero
  • 119
  • 11
0
votes
1 answer

Python script "standalone"

I've recently started writing python scripts and I'm still newbie to the language. I'm stuck with a problem: My script requires the 'requests' library(and the other packages that comes with it when using pip) to be installed by pip for the script to…
0
votes
3 answers

Handling usernames in file paths using Python

I'm writing a program that I would like to make a stand alone for my company. It works perfectly when I run it from the sublime text shell and I have everything set up to go except one issue that I can't seem to solve; file paths that involve…
aaron
  • 81
  • 1
  • 10
0
votes
1 answer

Py2app fails with scrapy

If been trying to create a standalone version of my project. I've been able to create the setup file and the alias app with py2app with no problems. Running the alias app works without problems. However, when creating the independent file the app…
J.Paravicini
  • 882
  • 12
  • 39
0
votes
1 answer

Python code compiled to a standalone program with Nuitka reports win32file.pyd import error

Program compiled on Windows 10 amd64 machine fails to start on Windows server 2008R2 amd64 with error: ImportError: LoadLibraryEx 'path\to\dist\folder\win32file.pyd' failed Nuitka version: 0.5.29.1 stable
Mr. Girgitt
  • 2,853
  • 1
  • 19
  • 22
0
votes
1 answer

Is there a way to connect repl.it with data in local drive?

On repl.it, I tried to call the path I know it exists, but it gave me an error. Code: import os print os.path.exists('C:\Users\') Error: SyntaxError: EOL while scanning string literal exited with non-zero status
KubiK888
  • 4,377
  • 14
  • 61
  • 115
0
votes
1 answer

Easier way to create python executable standalone program in window

Creating a python executable in pycharm is harder than creating it in visual studio or creating a vb.net executable. I thought I'd understand how to do this already but it looks like I have not. I created a question regarding this in Dec of last…
Johnseito
  • 315
  • 1
  • 9
  • 24
0
votes
1 answer

Create a python programm standalone on windows 7

I'm beginner on python, I'm developing a Python 3 application on my own computer (LINUX) and I have to give a final standalone version on Windows 64 to my teacher. My question is how to compile a python program on Windows, what's tools are…
user7774649
0
votes
1 answer

Making a standalone python script that can be run by another software

I am currently interning at a place where they've asked me to make a standalone python program to do something (say X). Now, that program is to be run by some commands sent by their proprietary software which is written in their proprietary…
0
votes
1 answer

Python GUI2Exe Application Standalone Build (Using Py2Exe)

I am trying to build a Python Script into a stand alone application. I am using GUI2Exe. My script uses selenium package. I have it installed. Project compiles fine and runs on python command line directly but fails to build a stand alone because…
user914425
  • 16,303
  • 4
  • 30
  • 41
-1
votes
1 answer

Issue when running xlwings python standalone fibonacci example

When running the standalone example from xlwings I am faced with the following error: . When I debug I am faced with the code falling over on this line: The log file its trying to open contains the following text:. As I have just taken it from the…
-1
votes
2 answers

Create standalone text application from Python

I am developing a program to use as a pedagogical tool in my classroom. I'm writing currently writing it in Python, but I'm also open to solutions that would use C. I want to create a standalone application for Mac (.app file) for my program, but I…
zh1
  • 231
  • 2
  • 8
1 2
3