Python modules import error

Posted by Choor on Stack Overflow See other posts from Stack Overflow or by Choor
Published on 2010-05-23T19:06:27Z Indexed on 2010/05/23 19:10 UTC
Read the original article Hit count: 196

Filed under:
|
|

Very strange for me:

# uname -a
Linux localhost.localdomain 2.6.18-194.3.1.el5 #1 SMP Thu May 13 13:09:10 EDT 2010 i686 i686 i386 GNU/Linux
# pwd
/root
# python
Python 2.6.5 (r265:79063, Apr 11 2010, 22:34:44)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-46)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import dns
>>>
[3]+  Stopped                 python
# cd /home/user/dev/dns
[root@localhost dns]# python
Python 2.6.5 (r265:79063, Apr 11 2010, 22:34:44)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-46)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import dns
Traceback (most recent call last):
  File "", line 1, in 
  File "dns.py", line 1, in 
    import dns.resolver
ImportError: No module named resolver
>>>
[4]+  Stopped                 python
#

Summary: I can't import same python module from different path. Any ideas? 0_o

P.S. SELINUX=disabled

© Stack Overflow or respective owner

Related posts about python

Related posts about linux