[Tutor] import'ing problems (path)

Kent Johnson kent_johnson at skillsoft.com
Tue Oct 5 15:04:23 CEST 2004


Tim,

Did you run the WebWare installer or just unpack the distribution file? 
Usually third-party libraries are installed in Python/lib/site-packages. 
This directory is automatically added to sys.path.

Alternatively you can make a permanent, global modification to sys.path by 
creating a file
Python/lib/site-packages/sitecustomize.py
containing the two lines
import sys
sys.path.append('/home/tim/downloads/python/Webware-0.8.1')

Kent

At 03:17 PM 10/4/2004 -0800, Tim Johnson wrote:
>Hello Pythonists:
>     I have installed a python package called webware
>at the following path:
>/home/tim/downloads/python/Webware-0.8.1
>
>I have the following python code:
>sys.path.append('/home/tim/downloads/python/Webware-0.8.1')
>print sys.path   ## shows '/home/tim/downloads/python/Webware-0.8.1'.
>                  ##   as a member of sys.path
>I need class Path which resides in
>/home/tim/downloads/python/Webware-0.8.1/WebKit/Page.py(pyc)
>to import it, I use the following statement:
>from WebKit.Page import Page
>
>and I get the following error message:
>"No module named WebKit.Page"
>
>What am I doing wrong and what needs to be done t
>correct it?
>
>thanks
>tim
>--
>Tim Johnson <tim at johnsons-web.com>
>       http://www.alaska-internet-solutions.com
>_______________________________________________
>Tutor maillist  -  Tutor at python.org
>http://mail.python.org/mailman/listinfo/tutor



More information about the Tutor mailing list