gpt4 book ai didi

python - NameError : name 'AF_INET' is not defined (ONLY ON MAC)

转载 作者:行者123 更新时间:2023-12-03 11:56:29 26 4
gpt4 key购买 nike

因此,我在三个位置安装了python:Windows计算机,Pi(运行Kali)和Mac。当导入套接字库或依赖于套接字库的库(即ipwhois)时,我的Mac是唯一出现此错误的计算机。我在sudo中运行它,我尝试了python 2和python 3,但仍然没有成功。这是我得到的:

Python 2.7.14 (default, Oct  1 2017, 15:09:23) 
[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.37)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

>>>import socket
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "socket.py", line 15, in <module>
serverSocket = socket(AF_INET, SOCK_STREAM)
NameError: name 'AF_INET' is not defined
>>> import ipwhois
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/user/homebrew/lib/python2.7/site-packages/ipwhois/__init__.py", line 26, in <module>
from .net import Net
File "/Users/user/homebrew/lib/python2.7/site-packages/ipwhois/net.py", line 26, in <module>
import socket
File "socket.py", line 15, in <module>
serverSocket = socket(AF_INET, SOCK_STREAM)
NameError: name 'AF_INET' is not defined

同样,在我的Windows或Linux机器上,这些库中的任何一个都没有问题。我不太确定该从哪里去。任何帮助表示赞赏。

最佳答案

AF_INET是在socket内部定义的,因此请尝试以下方式:

from socket import AF_INET, SOCK_STREAM

如果您想知道 socket中包含的内容,请尝试以下方法:
import socket

print dir(socket)

关于python - NameError : name 'AF_INET' is not defined (ONLY ON MAC),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47455977/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com