Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-11 Thread Praveen Kumar via Python-list
Yes, I have 24.3.1 version of pip in my win 11 device, there is a new version of pip available, 25.0.1 Shall I upgrade that? Kind regards, Praveen On Mon, 10 Mar 2025, 03:04 Thomas Passin via Python-list, < python-list@python.org> wrote: > On 3/9/2025 3:16 PM, Gilmeh Serda via Py

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-11 Thread Praveen Kumar via Python-list
Is that an approved location for executables? May I know? What do you mean by approved location? Kind regards, Praveen On Mon, 10 Mar 2025, 01:25 Gilmeh Serda via Python-list, < python-list@python.org> wrote: > On Sat, 8 Mar 2025 15:59:51 +0530, Praveen Kumar wrote: > > >

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-10 Thread Praveen Kumar via Python-list
running python and python --version with admin and all those executables, anyway it works really well. (Finally The all issues stand resolved.) Thank you for support matt and team, I'm really thankful for your attention to this matter. Kind regards, Praveen On Mon, 10 Mar 2025, 20:42 Pr

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-09 Thread Praveen Kumar via Python-list
ython.exe and python do evoke the cited error. Kind regards, Praveen On Sun, 9 Mar 2025, 17:56 Thomas Passin via Python-list, < python-list@python.org> wrote: > On 3/8/2025 10:47 PM, Praveen Kumar wrote: > > Hi Thomas and team, > > > > It's worked In non-admin pr

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-09 Thread Praveen Kumar via Python-list
Hi Thomas No, I wasn't installed by admin privileges and I'm not running as a non-admin, regardless I tried running with admin and non-admin privileges, however the issue still persisted. Kind regards, Sincerely, Praveen Kumar Mob: +91 9515531643 On Sun, 9 Mar 2025, 03:52 Thomas

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-08 Thread Praveen Kumar via Python-list
Hi Thomas and team, It's worked In non-admin privileges after put the file in path at the first on environmental path variables, but with admin privileges it doesn't work though. Showing same error, as I mentioned earlier. Kind regards, Sincerely, Praveen Kumar Mob: +91 9515531643

"Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-08 Thread Praveen Kumar via Python-list
olve this? Extending my request you to kindly help me out of this error and give me the root cause of this problem. *Kind regards, * *Sincerely,* *Praveen Kumar* *Mob: *+91 9515531643 -- https://mail.python.org/mailman/listinfo/python-list

Struggling with python-daemon and subprocess module to work together

2014-10-21 Thread Praveen Kumar
re out issue is occurred due to module or I missed something during daemon initialization. [0] http://fpaste.org/143455/ -- Praveen Kumar http://fedoraproject.org/wiki/User:Kumarpraveen http://fedoraproject.org/ http://kumar-pravin.blogspot.com -- https://mail.python.org/mailman/listinfo/python-list

ThreadPoolExecutor - callback guaranteed to run in same thread as the submitted function?

2014-09-24 Thread Praveen Gollakota
s not seem like we switch the thread to the main thread before we run the callback. But just wanted to be sure. Any insight would be appreciated! Thanks, Praveen -- https://mail.python.org/mailman/listinfo/python-list

Re: text to DB

2010-08-16 Thread Praveen
On Aug 14, 11:15 am, Dennis Lee Bieber wrote: > On Fri, 13 Aug 2010 09:46:34 -0700 (PDT), Praveen > declaimed the following in > gmane.comp.python.general: > > > I have a text file in this format > > PRA 1:13 2:20 3:5 > > SRA 1:45 2:75 3:9 > > TRA

text to DB

2010-08-13 Thread Praveen
I have a text file in this format PRA 1:13 2:20 3:5 SRA 1:45 2:75 3:9 TRA 1:2 2:65 3:45 pattern is- Book Chapter:Verses now i have my DB schema like this book_id chapter_id versed_id 1 1 13 1 2 20 1 3

Re: finding contents from string

2010-02-16 Thread Praveen Boppana
It looks like you want to extract the query parameters from standard url's. There is a standard Python module to accomplish this: http://www.python.org/doc/2.5.2/lib/module-urlparse.html From: danin To: python-list@python.org Sent: Tue, 16 February, 2010 4:13:

Issues download 2.4 python (for windows) msi

2009-06-11 Thread Praveen Kariyanahalli
Hi I am having issues downloading any msi prior to the 3.X version. All of them appear to be truncated. My old scripts dont compile on the later versions. Can someone please fix this ASAP ? Thanks -Praveen -- http://mail.python.org/mailman/listinfo/python-list

Is there any way to use python scripts in mainframe environment?

2007-12-06 Thread Kolipaka, Praveen
Is there any way to use python scripts in mainframe environment? Regards, Praveen KK Sr.Software Engineer Hyderabad | India. -- http://mail.python.org/mailman/listinfo/python-list

AIX - Python - db2.py

2007-09-20 Thread Shilavantar, Praveen
e 455.41: 1506-045 (S) Undeclared identifier SQL_HANDLE_DBC. "_db2_module.c", line 480.27: 1506-275 (S) Unexpected text handle encountered. "_db2_module.c", line 480.47: 1506-275 (S) Unexpected text handleType encountered. "_db2_module.c", line 482.25: 1506-

How to get/read Hard disk label / drive label

2006-11-05 Thread Praveen
I want to read individual disk label for Hard disk (C: drive, D: drive disk label) and CD-ROM disk label Please provide some pointer to the code or document. Thanks in advance. -- http://mail.python.org/mailman/listinfo/python-list

Re: How to access file last modified dates on each file in a directory

2006-10-29 Thread Praveen
stats[stat.ST_MTIME] print 'Last accessed: ' + time.ctime(accessed) print 'Last modified: ' + time.ctime(modified) Regards, Praveen On Oct 30, 8:00 am, [EMAIL PROTECTED] wrote: > Greetings, > > I am attempting to view all files in a directory and if tho

Calling the C API from Python and Python program from same C API - bidirectional

2005-03-16 Thread Praveen, Tayal (IE10)
Hi Guys, I am having problems in the following C API program where myOtim_system is callable from python function. The module is listed below - static PyObject * myOptim_system(PyObject *self, PyObject *args) { const char *command; double u0, v0, u1, v1, u2, v2, u3, v3; int sts;

(no subject)

2005-03-15 Thread praveen tayal
Hi Guys, I am having problems in the following C API program where myOtim_system is callable from python function. The module is listed below - static PyObject * myOptim_system(PyObject *self, PyObject *args) { const char *command; double u0, v0, u1, v1, u2, v2, u3, v3; int sts;