我正在尝试安装CsvFormat软件包
我正在使用python 2.7.10
vm02$ pip install --user CsvFormat
错误是
Collecting CsvFormat
Could not find a version that satisfies the requirement CsvFormat (from versions: )
No matching distribution found for CsvFormat
vm02$ python -V
Python 2.7.10
答案 0 :(得分:0)
根据我的了解,您正在尝试使用python读取csv文件,最好的方法是获取pandas
,然后运行以下命令
import pandas
file = pandas.read_csv("Location of your file")
检查此链接以获取更多信息pypi.org
如果我误解了您的问题,请告诉我。