我正在尝试在 R 3.0.1 (Windows 7) 中下载文件:
fileUrl <- "https://data.baltimorecity.gov/api/views/dz54-2aru/rows.csv?accessType=DOWNLOAD"
download.file(fileUrl, destfile="./data/cameras.csv", method="curl")
我检查了网址和我的互联网连接,它们似乎工作得很好。但是,我收到此消息:
Warning message:
In download.file(fileUrl, destfile = "./data/cameras.csv", method = "curl") :
download had nonzero exit status
在网上找不到任何帮助,有人知道如何解决这个问题吗?