我想从Python中检查MX-Record。所以我安装了dnspython包,但当我尝试导入以下库时:
dnspython
import dns.resolver
它显示以下错误:
ModuleNotFoundError: No module named 'dns'.
我使用PyCharm和Python 3。
rslzwgfq1#
您应该先安装https://github.com/rthalley/dnspythonpip安装dnsython
goqiplq22#
对我来说,解决这个问题的方法是将dnspython添加到需求文件中。因此,在requirements.pinned.txt中:
requirements.pinned.txt
... dnspython==2.0.0 ...
在requirements.txt中:
requirements.txt
dnspython ...
2条答案
按热度按时间rslzwgfq1#
您应该先安装https://github.com/rthalley/dnspython
pip安装dnsython
goqiplq22#
对我来说,解决这个问题的方法是将
dnspython
添加到需求文件中。因此,在
requirements.pinned.txt
中:在
requirements.txt
中: