Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都知道这个错误是什么以及如何解决它? 我已经尝试过 chmod -R 777 /usr/local/python2.6/dist-packages/joblib但没有运气。
/dev/shm 在 ubuntu 10.04 上以只读方式挂载
$ mount | grep shm tmpfs on /dev/shm type tmpfs (ro)
这解决了问题:
sudo mount -v -o remount,rw /dev/shm
您需要更改进程要写入的目录的权限。找出joblib要放置东西的目录并更改其权限或使用具有所需权限的其他目录。为了能够授予权限并允许 Python 写入文件系统,它必须以允许写入的方式挂载。
joblib