Re: pip module not found

2023-05-12 Thread Barry
> On 12 May 2023, at 21:59, Thomas Passin wrote: > > On 5/12/2023 2:42 AM, David John wrote: >> Hi, >> I recently have been experiencing issues with the pip installation module. >> I have python version 3.11 installed. I've checked the directory installed >> in the systems variables window and

Re: pip module not found

2023-05-12 Thread Thomas Passin
On 5/12/2023 2:42 AM, David John wrote: Hi, I recently have been experiencing issues with the pip installation module. I have python version 3.11 installed. I've checked the directory installed in the systems variables window and nothing is amiss. Kindly assist. It would be useful if you told u

Re: pip module not found

2023-05-12 Thread Thomas Passin
On 5/12/2023 1:45 PM, Barry wrote: On 12 May 2023, at 18:31, Thomas Passin wrote: On 5/12/2023 11:18 AM, Thomas Passin wrote: On 5/12/2023 2:42 AM, David John wrote: Hi, I recently have been experiencing issues with the pip installation module. I have python version 3.11 installed. I've ch

Re: pip module not found

2023-05-12 Thread Barry
> On 12 May 2023, at 18:31, Thomas Passin wrote: > > On 5/12/2023 11:18 AM, Thomas Passin wrote: >>> On 5/12/2023 2:42 AM, David John wrote: >>> Hi, >>> I recently have been experiencing issues with the pip installation module. >>> I have python version 3.11 installed. I've checked the directo

Re: pip module not found

2023-05-12 Thread Thomas Passin
On 5/12/2023 11:18 AM, Thomas Passin wrote: On 5/12/2023 2:42 AM, David John wrote: Hi, I recently have been experiencing issues with the pip installation module. I have python version 3.11 installed. I've checked the directory installed in the systems variables window and nothing is amiss. K

Re: pip module not found

2023-05-12 Thread Mats Wichmann
On 5/12/23 00:42, David John wrote: Hi, I recently have been experiencing issues with the pip installation module. How? Please be explicit or nobody can answer your question. -- https://mail.python.org/mailman/listinfo/python-list

pip module not found

2023-05-12 Thread David John
Hi, I recently have been experiencing issues with the pip installation module. I have python version 3.11 installed. I've checked the directory installed in the systems variables window and nothing is amiss. Kindly assist. Regards, David -- https://mail.python.org/mailman/listinfo/python-list

Re: Module not found

2018-08-28 Thread Sharan Basappa
On Monday, 27 August 2018 22:45:47 UTC+5:30, Peter Otten wrote: > Sharan Basappa wrote: > > > I am running a program that I got as reference from GitHub. > > I am running on windows OS. > > > > Here is a snippet of the code (initial few lines). > > > > #!/usr/bin/env python > > # -*- coding: ut

Re: Module not found

2018-08-27 Thread Peter Otten
Sharan Basappa wrote: > I am running a program that I got as reference from GitHub. > I am running on windows OS. > > Here is a snippet of the code (initial few lines). > > #!/usr/bin/env python > # -*- coding: utf-8 -*- > __author__ = 'Shilin He' > > import sys > sys.path.insert(0, 'D:\Project

Re: Module not found

2018-08-27 Thread Larry Martell
On Mon, Aug 27, 2018 at 11:20 AM, Sharan Basappa wrote: > I am running a program that I got as reference from GitHub. > I am running on windows OS. > > Here is a snippet of the code (initial few lines). > > #!/usr/bin/env python > # -*- coding: utf-8 -*- > __author__ = 'Shilin He' > > import sys >

Module not found

2018-08-27 Thread Sharan Basappa
I am running a program that I got as reference from GitHub. I am running on windows OS. Here is a snippet of the code (initial few lines). #!/usr/bin/env python # -*- coding: utf-8 -*- __author__ = 'Shilin He' import sys sys.path.insert(0, 'D:\Projects\Initiatives\machine learning\loglizer-mast

Re: Python 2.7 import socket urllib fails to load, module not found

2012-08-17 Thread Christian Heimes
Am 17.08.2012 21:20, schrieb wdt...@comcast.net: > Just installed python 2.7 and using with web2py. > > When running python from command line to bring up web2py server, get errors > that python socket and urllib modules cannot be found, can't be loaded. This > is not a web2py issue. > > No ot

Re: Python 2.7 import socket urllib fails to load, module not found

2012-08-17 Thread Emile van Sebille
On 8/17/2012 2:22 PM wdt...@comcast.net said... Done - tail end of the python path had a missing bit...gr... thanks so much Well it's bizarre - now it doesn't. did an import sys from within interpreter, then did import socket. Worked the first time. Restarted and it happened again. Th

Re: Python 2.7 import socket urllib fails to load, module not found

2012-08-17 Thread wdtate
On Friday, August 17, 2012 3:20:48 PM UTC-4, (unknown) wrote: > Just installed python 2.7 and using with web2py. > > > > When running python from command line to bring up web2py server, get errors > that python socket and urllib modules cannot be found, can't be loaded. This > is not a web2p

Re: Python 2.7 import socket urllib fails to load, module not found

2012-08-17 Thread wdtate
On Friday, August 17, 2012 5:15:35 PM UTC-4, (unknown) wrote: > > > > > So, try the following in both environments: > > > import sys > > > for ii in sys.path: print ii > > > > > > You'll likely find diffferences between the two. > > > > > In the pythonwin environment, try: > > >

Re: Python 2.7 import socket urllib fails to load, module not found

2012-08-17 Thread wdtate
> > So, try the following in both environments: > import sys > for ii in sys.path: print ii > > You'll likely find diffferences between the two. > In the pythonwin environment, try: > > > > import socket > > print socket.__file__ > > > Chances are the __file__'s director

Re: Python 2.7 import socket urllib fails to load, module not found

2012-08-17 Thread Emile van Sebille
On 8/17/2012 1:41 PM wdt...@comcast.net said... From cmd prompt - I get this: Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. import urllib Traceback (most recent call last): File "",

Re: Python 2.7 import socket urllib fails to load, module not found

2012-08-17 Thread wdtate
> > So, on my system I get: > > ActivePython 2.7.0.2 (ActiveState Software Inc.) based on > > Python 2.7 (r27:82500, Aug 23 2010, 17:18:21) [MSC v.1500 32 bit > > (Intel)] on win32 > > Type "help", "copyright", "credits" or "license" for more information. > > >>> import urllib > > >>> imp

Re: Python 2.7 import socket urllib fails to load, module not found

2012-08-17 Thread Emile van Sebille
On 8/17/2012 12:20 PM wdt...@comcast.net said... Just installed python 2.7 and using with web2py. When running python from command line to bring up web2py server, get errors that python socket and urllib modules cannot be found, can't be loaded. This is not a web2py issue. So, on my system

Python 2.7 import socket urllib fails to load, module not found

2012-08-17 Thread wdtate
Just installed python 2.7 and using with web2py. When running python from command line to bring up web2py server, get errors that python socket and urllib modules cannot be found, can't be loaded. This is not a web2py issue. No other python versions are on the my machine. Pythonpath has the

Re: Module not found in script that was found in command-line interpreter. Possible Path issue?

2008-04-15 Thread Jacob Davis
On Apr 3, 2008, at 10:54 AM, Trent Mick wrote: > Jacob Davis wrote: >> I just installed the MySQLdb module and I have been able to get it >> to run in my command line interpreter. I am running Mac Leopard, >> and Python 2.5. >> I have tested importing and actually connecting and using a MySQL

Re: Module not found in script that was found in command-line interpreter. Possible Path issue?

2008-04-03 Thread Trent Mick
Jacob Davis wrote: > I just installed the MySQLdb module and I have been able to get it to > run in my command line interpreter. > > I am running Mac Leopard, and Python 2.5. > > I have tested importing and actually connecting and using a MySQL > database, although it issues some warning: >

Module not found in script that was found in command-line interpreter. Possible Path issue?

2008-04-02 Thread Jacob Davis
Hi. I just installed the MySQLdb module and I have been able to get it to run in my command line interpreter. I am running Mac Leopard, and Python 2.5. I have tested importing and actually connecting and using a MySQL database, although it issues some warning: SnakeBite:MySQL-python-1.2

Re: "tkinter module not found" please help

2007-01-09 Thread Asper Faner
[EMAIL PROTECTED] wrote: > I'm trying to install python2.5 on my computer(os Fedora 5). My problem > is that I'm unable to get the tkinter module loaded into python. I've > tried the solution here:"wiki.python.org/moin/TkInter" but am unsure as > how to modify my setup.py script. I have installed

"tkinter module not found" please help

2007-01-09 Thread notsonice51
I'm trying to install python2.5 on my computer(os Fedora 5). My problem is that I'm unable to get the tkinter module loaded into python. I've tried the solution here:"wiki.python.org/moin/TkInter" but am unsure as how to modify my setup.py script. I have installed the latest versions of tcl/tk (8.4

Re: Tkinter module not found

2006-08-11 Thread Philippe Martin
Shuaib wrote: > Hey, > > Even though I freshly installed Tcl and Tk, python still seem to have > problems accessing Tkinter module. Here is what says when I do "import > Tkinter" > > == > Traceback (most recent call last): > File "", line 1, in ? > ImportError: No module named Tkinter > == >

Re: Tkinter module not found

2006-08-11 Thread Shuaib
Well, I finally solved my problem. I just had to reinstall python with the USE flags of tcl and tk. #USE="tcl tk" emerge python And now I can use Tkinter Thanks guys! -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter module not found

2006-08-08 Thread Dan
Shuaib wrote: > Hey again, > > I am using the latest python available on my system (2.4). So I don't > think that's the problem. > > Any more ideas? Do I need to install Tkinter as a seperate > module/package? As I said, I've already installed Tcl/Tk, though. This is a wild guess, but I just ins

Re: Tkinter module not found

2006-08-08 Thread John Salerno
Thomas Heller wrote: > c:\>which python > c:\util\python.EXE which didn't work for me on the command prompt...is it native to it? -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter module not found

2006-08-08 Thread John Salerno
Shuaib wrote: > Hey again, > > I am using the latest python available on my system (2.4). So I don't > think that's the problem. > > Any more ideas? Do I need to install Tkinter as a seperate > module/package? As I said, I've already installed Tcl/Tk, though. Hmm, yes, I think tkinter is separat

Re: Tkinter module not found

2006-08-08 Thread Thomas Heller
John Salerno schrieb: > Tim Chase wrote: >>> The cause of this is usually that you are using a different >>> version of Python than the one you installed Tkinter into, but >>> being a Linux newbie I have yet to discover how to redirect >>> the 'python' command to invoke the newer version of Python.

Re: Tkinter module not found

2006-08-08 Thread Shuaib
Hey again, I am using the latest python available on my system (2.4). So I don't think that's the problem. Any more ideas? Do I need to install Tkinter as a seperate module/package? As I said, I've already installed Tcl/Tk, though. Thanks for your time. Tim Chase wrote: > > The cause of this i

Re: Tkinter module not found

2006-08-08 Thread John Salerno
Tim Chase wrote: >> The cause of this is usually that you are using a different >> version of Python than the one you installed Tkinter into, but >> being a Linux newbie I have yet to discover how to redirect >> the 'python' command to invoke the newer version of Python. > > > The OS looks for th

Re: Tkinter module not found

2006-08-08 Thread Tim Chase
> The cause of this is usually that you are using a different > version of Python than the one you installed Tkinter into, but > being a Linux newbie I have yet to discover how to redirect > the 'python' command to invoke the newer version of Python. The OS looks for the first 'python' it finds i

Re: Tkinter module not found

2006-08-08 Thread John Salerno
Shuaib wrote: > Hey, > > Even though I freshly installed Tcl and Tk, python still seem to have > problems accessing Tkinter module. Here is what says when I do "import > Tkinter" > > == > Traceback (most recent call last): > File "", line 1, in ? > ImportError: No module named Tkinter > == > >

Tkinter module not found

2006-08-08 Thread Shuaib
Hey, Even though I freshly installed Tcl and Tk, python still seem to have problems accessing Tkinter module. Here is what says when I do "import Tkinter" == Traceback (most recent call last): File "", line 1, in ? ImportError: No module named Tkinter == Any ideas how to fix this problem? (Gen

Re: module not found in IIS virtual dir

2005-08-31 Thread Peter Maas
Peter Maas schrieb: > I'm trying to call python scripts from IIS in the following tree: [...] > If I run selectFiles.py from the command line everything is ok. But > if I call it via IIS (http://localhost/vselect/selectFiles.py) there > is an error "No module named util" [...] Forget it. It was an

module not found in IIS virtual dir

2005-08-31 Thread Peter Maas
I'm trying to call python scripts from IIS in the following tree: upgrade/ util/ __init__.py logonUser.py select/ selectFiles.py - select/ is referred from IIS as a virtual dir vselect. - upgrade/ is inserted into the Python path via .pth file in .../site-