gpt4 book ai didi

python - IOError : [Errno 2] No such file or directory on Mac

转载 作者:行者123 更新时间:2023-12-04 21:02:26 25 4
gpt4 key购买 nike

我试图打开一个确实存在的文件,但我不断收到以下错误消息:

No such file or directory on Mac

我已确保它与 python 代码位于同一目录中。我还尝试更改 excel 文档的名称以及该文档是否为 .xls.xlsx但它没有奏效。

这是我尝试过的几个版本,但到目前为止,它们都给了我相同的结果。
import os.path
book = open(os.path.expanduser("~/Desktop/Crimes.xlsx"))

或者
import xlrd
import os.path
book = xlrd.open_workbook(os.path.join("/Users/caitlinwesterfield",'Crime.xls')

或者
import xlrd
book = xlrd.open_workbook('Crime.xls')

或者
import xlrd
book = open('/Users/caitlinwesterfield/Desktop/Crime.xls', "r")

或者
import xlrd
book = open("~/Crime.xls", "r")

或者
import xlrd
book = open(os.path.expanduser(r"~/Desktop/Crime.xls"))

或者
import xlrd
book = open('Crime.xls')

或者
import xlrd
book = open(os.path.expanduser("/Users/caitlinwesterfield/Desktop/Crime.xls"))

或者
import xlrd
import os
book = xlrd.open_workbook(os.path.join("/Users/caitlinwesterfield","TypesOfCrime.xls"))

或者
import xlrd
book = xlrd.open_workbook("typesofcrime.xls")

最佳答案

您是否尝试过检查是否存在权限问题?

打开你的终端并 cd 到正确的目录

cd -l

以下是这些权限的含义:
rwxrwxrwx  <-- r refers to read, w to write, and x to execute
--------- <-- a hyphen refers to the permission not existing

enter image description here

尝试运行:
chmod 777 Crimes.xlsx
# you might need to add sudo if you get permission error:
sudo chmod 777 Crimes.xlsx

image source and more info

how to use the terminal

关于python - IOError : [Errno 2] No such file or directory on Mac,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33589650/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com