我是 VSCode 的新手,一直在尝试从 Jupyter 切换过来,但遇到了很大的困难。我现在的主要项目是为工作开发情绪分析程序,我什至无法开始,因为我无法读取数据。
这是我当前的代码:
import numpy as np
import pandas as pd
from sklearn.preprocessing import LabelEncoder
from sklearn.model_selection import train_test_split
data_train = pd.read_csv("trainingData/yelp_review_full_csv/train.csv", header = None)
data_test = pd.read_csv("trainingData/yelp_review_full_csv/test.csv", header = None)
data_train.head(5)
我的launch.json是
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"python": "${command:python.interpreterPath}",
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"cwd": "${fileDirname}"
}
]
}
我用谷歌搜索了所有可能的方法,每次都遇到相同的错误。有人可以建议如何解决这个问题吗?
答案 0 :(得分:0)
1.当读取文件(.py文件)和数据文件(.csv文件)在同一个文件夹时:
1>。使用时:launch.json 中的 "cwd": "${workspaceFolder}",
(cwd 的默认值)。
2>。当使用 "cwd": "${fileDirname}"
2.当读取文件和数据文件在不同文件夹时:请使用"cwd": "${workspaceFolder}",
参考:cwd in VS Code。