jupyterでファイルを書き込もうとしたらpermisson deniedエラーが出た
Jupyter notebookで下のコードを実行しようとしたら、14行目でpermission deniedエラーがでました。調べてもピンとくるものがなかったのですが、どうしたらいいですか。
環境
- OS
- Windows 10
- Jupyter notebookはedgeで開いています。
import gzip
file=[
"train-images-idx3-ubyte.gz",
"train-labels-idx1-ubyte.gz",
"t10k-images-idx3-ubyte.gz",
"t10k-labels-idx1-ubyte.gz"
]
for f in file:
raw_file= "/"+f.replace(".gz","")
with gzip.open(f,"rb") as gz:
body = gz.read()
with open(raw_file,"wb") as raw_w:
raw_w.write(body)