我对本地文件read_csv
没有问题,但当我尝试在局域网上读取csv文件时,我得到:
IOError: File //192.168.0.162/data/myfile.csv does not exist.
-> 401 return _read(filepath_or_buffer, kwds)
如果我将文件复制到本地,read_csv没有问题 这是导致问题的一线:
df9 = read_csv('//192.168.0.162/data/myfile.csv')
我忽略了一些明显的东西吗? 在ipython notebook上使用pandas 0.11。
答案 0 :(得分:0)
试试这个
with open('//192.168.0.162/data/myfile.csv') as fh:
df = pd.read_csv(fh)