The directory C:\Program Files\Python38\Winpython64.8.9.0\WPy64�\settings\runtime is not writable and it is required to create IPython consoles. Please make it writable.
时间: 2023-06-30 10:05:04 浏览: 239
这个错误提示是因为你的 Python 程序没有权限在指定目录下创建 IPython consoles。解决这个问题的方法是:
1. 以管理员身份运行你的 Python 程序,这样你的程序就有权限在指定目录下创建 IPython consoles。
2. 手动修改目录的权限,使得你的 Python 程序有足够的权限在指定目录下创建 IPython consoles。具体的操作方法可以参考这篇文章:https://www.howtogeek.com/301768/how-to-take-ownership-of-files-and-folders-in-windows/.
阅读全文