Ilgın Yolgezen
Ilgın Yolgezen

Reputation: 31

Install dnspython on linux ubuntu

I have Ubuntu installed. I am trying to use zxlolbot. But when I open zxlolbot.py it gives me an error.

Please download dnspython

I tried to install dnspython but I couldn't install it. I don't use PuTTY.

Upvotes: 3

Views: 13284

Answers (3)

Ubi
Ubi

Reputation: 104

  1. Download dnspython from http://www.dnspython.org/.
  2. Extract the contents.
  3. Open the terminal and navigate to the extracted directory.
  4. Type python setup.py install

Upvotes: 1

Ahmad AbuSleem
Ahmad AbuSleem

Reputation: 1

Make sure you have (pip or pip3) installed.

Use one of these commands (depending on what your pip version):

pip install dnspython
pip3 install dnspython

Upvotes: 0

Paul Gear
Paul Gear

Reputation: 269

You need to install the package python-dnspython:

sudo apt-get install python-dnspython

Upvotes: 4

Related Questions