Reputation: 31
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
Reputation: 104
python setup.py install
Upvotes: 1
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
Reputation: 269
You need to install the package python-dnspython
:
sudo apt-get install python-dnspython
Upvotes: 4