我一直在尝试从gitbash执行python文件。看来我的gitbash无法找到我的文件。
我认为python安装不正确或者未设置环境变量。但是,我设置了所有内容,当我在gitbash中执行$python filename.py
时,它会出现Python 3.6.4,我想这意味着python和路径变量设置正确。
现在,当我写No such file and directly found
时,它会出现错误:challenge1.py
,但我确实在同一文件夹中安装了名为func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
var cell: UITableViewCell? = tableView.dequeueReusableCell(withIdentifier: "cell")
// Not the type of cell, if the queue will return nil, at this time requires create ⼀ cell
if cell == nil {
cell = UITableViewCell(style: .default, reuseIdentifier: "cell")
}
}
的文件。
答案 0 :(得分:0)
在您的bash中,您位于~
,默认为%USERPROFILE%
(C:\USers\yourLogin
)
因此,除非您在该文件夹中创建了challenge1.py
,否则您需要先cd到包含该文件的实际文件夹
cd /c/path/to/file