pythonw Questions
1
I am running a Python program on Windows with:
no explorer.exe running, no desktop, no start menu, typical for embedded computers. If you want to try, you can emulate this by killing explorer.exe ...
8
Solved
I have just tried to update my anaconda environment to the latest version and I am now receiving errors. I opened the conda environment as an admin, and the commands issued were:
conda update cond...
6
Solved
I have a program with a GUI that runs an external program through a Popen call:
p = subprocess.Popen("<commands>" , stdout=subprocess.PIPE , stderr=subprocess.PIPE , cwd=os.getcwd())
p.commu...
Chartier asked 28/11, 2009 at 21:50
3
I just made a connection between python's: pythonw.exe and java's: javaw.exe and I'm curious about this as I cant figure out what some of those ending letters mean. I know that javac is the Java co...
3
I have a python program that runs in a server continuously and it puts some data into MYSQL dataBase and load some. It is also using TCP/IP connection. the problem is that after about 24 hrs it giv...
Ras asked 7/12, 2012 at 2:13
7
Running a simple .py or .pyw python file causes python.exe to show up under Task Manager.
python myApp.py
python myApp.pyw
However when we try to run it without using the console, the script doe...
Outofdoor asked 18/7, 2014 at 23:23
1
I'm running Python 3.3 on Windows 7. I have a script that succeeds when I call it like this:
c:\python33\python.exe my_script.py
But fails when I call it like this:
c:\python33\pythonw.exe my...
6
Solved
If I save my code files as .pyw, no console window appears - which is what I want - but if the code includes a call to os.system, I still get a pesky console window. I assume it's caused by the cal...
Hysell asked 19/11, 2009 at 17:28
1
I have a script that converts Google Earth .kml / .kmz files to shapefiles with a simple GUI interface written in Tkinter.
My problem is that it works fine with a .py extension, but when saved ou...
Earhart asked 11/4, 2012 at 21:7
3
Solved
I have a python program with a wxpython GUI and some command line parameters. I generate a single windows executable with py2exe. I don't want to have a command line window in the background, so py...
1
© 2022 - 2024 — McMap. All rights reserved.