无法安装csv模块

saa*_*asa 16 python csv macos pip

我是一个mac用户,今天我尝试安装csv今天,这里是命令 pip install csv.但不幸的是它返回了以下错误

Could not find a version that satisfies the requirement csv (from versions: )
No matching distribution found for csv
Run Code Online (Sandbox Code Playgroud)

我有Python版本2.7.13,我已经安装了其他依赖项scikit-learn,numpy and matplotlib,但由于某些原因我无法安装csv.

小智 45

csv是python标准库的一部分,所以你不需要用pip安装它.只需使用它:

import csv
Run Code Online (Sandbox Code Playgroud)