python2.7 -m pip install socket
Collecting socket
Using cached socket-0.5.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-NGBb1T/socket/setup.py", line 2, in <module> raise RuntimeError("Package 'socket' must not be downloaded from pypi")
RuntimeError: Package 'socket' must not be downloaded from pypi
命令“python setup.py egg_info”失败,错误代码1在/ tmp / pip-build-NGBb1T / socket /
答案 0 :(得分:0)
如果您只是想使用python套接字,那么您不需要单独安装它,因为它已经包含在标准库中。
但是如果您尝试安装其他需要socket lib的软件包,那么在该软件包的setup.py
中,您可以看到它包含一行:
raise RuntimeError("Package 'socket' must not be downloaded from pypi")
socket
模块已包含在标准库中。你不必下载任何东西。只需输入import socket
,即可全部设置。