我正在尝试按照youtube指南开始我的第一个数据科学项目。但是,我无法让Jupyter打开包含数据的文件。
%pylab inline
import pandas
import seaborn
import os.path
testFile = open("uber-raw-data-arp14")
print(testFile)
导致:
FileNotFoundError Traceback (most recent call last)
<ipython-input-1-6ce8a207c16e> in <module>
3 import seaborn
4 import os.path
----> 5 testFile = open("uber-raw-data-arp14")
6 print(testFile)
FileNotFoundError: [Errno 2] No such file or directory: 'uber-raw-data-arp14'
当我尝试:
%pylab inline
import pandas
import seaborn
import os
os.startfile("C:\Users\caleb\PythonData\uber-raw-data-apr14")
结果是:
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
今天我最终尝试了Google的另一种方法,而我遇到的另一个错误是“您没有权限”。
我不确定是否使用anaconda3提示符而不是cmd是否会影响这一点,但是如果是这样,则在通过jupyter笔记本打开cmd时我的cmd出现内核错误。
因此,除非通过anaconda3提示符,否则无法使用jupyter笔记本。