bpbp-boop / route53d

Automatically exported from code.google.com/p/route53d
0 stars 0 forks source link

Unable to run application #7

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
install boto and dnspython

jdyer@retina:~/Downloads/route53d-0.01-alpha » pip list                        
    1 ↵
argparse (1.2.1)
boto (2.9.8)
cli53 (0.3.6)
distribute (0.6.45)
dnspython (1.11.0)
docopt (0.6.1)
pssh (2.3.1)
SpoofMAC (1.2.1)
vboxapi (1.0)
wsgiref (0.1.2)

jdyer@retina:~/Downloads/route53d-0.01-alpha » sudo ./route53d.py --config 
route53d.ini.sample
Traceback (most recent call last):
  File "./route53d.py", line 44, in <module>
    import dns.message
ImportError: No module named dns.message

Not very familiar w/ Python but it looks like it cant load that module...  Not 
sure why

Original issue reported on code.google.com by Johntdyer on 19 Jul 2013 at 5:44

GoogleCodeExporter commented 8 years ago
Hi,

It appears that DNSPython isn't installed correctly.

If you run the Python interpreter you need to be able to import dns.message. 
Can you try it please? It should look like the following:

$ /usr/bin/env python
Python 2.7.5 (default, Aug 25 2013, 00:04:04) 
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import dns.message
>>> dir(dns.message)
['BadEDNS', 'BadTSIG', 'Message', 'ShortHeader', 'TrailingJunk', 
'UnknownHeaderField', 'UnknownTSIGKey', '_TextReader', '_WireReader', 
'__builtins__', '__doc__', '__file__', '__loader__', '__name__', '__package__', 
'cStringIO', 'dns', 'from_file', 'from_text', 'from_wire', 'make_query', 
'make_response', 'random', 'struct', 'sys', 'time']
>>> 

Original comment by james.ra...@gmail.com on 28 Oct 2013 at 3:07