在jupyter notebook下读取/写入文件失败,出现Permission error,是由于项目所在的文件夹的权限不够导致的
命令行下找到项目所在的目录,然后给该文件夹修改权限
chmod -R 777 your_file_path
即可成功通过jupyter notebook读写数据
在jupyter notebook下读取/写入文件失败,出现Permission error,是由于项目所在的文件夹的权限不够导致的
命令行下找到项目所在的目录,然后给该文件夹修改权限
chmod -R 777 your_file_path
即可成功通过jupyter notebook读写数据