AttributeError:module' os'没有属性' chroot'

时间:2016-10-14 20:51:10

标签: python python-3.x attributeerror chroot

下面是我在spyder&中运行的基本代码。 python窒息,我做错了什么?

import csv,os,sys
path = os.getcwd()
print (path)
os.chroot(path)

我收到以下错误消息:

  os.chroot(path)

AttributeError: module 'os' has no attribute 'chroot'

3 个答案:

答案 0 :(得分:3)

一种可能性是您的操作系统是Microsoft Windows,os.chroot() is not available

答案 1 :(得分:0)

我检查了你的代码,没有任何错误 但我看到这个消息: PermissionError: [Errno 1] Operation not permitted: '/home/beenj/Documents' 表示我们必须使用python3 ==>运行sudo sudo python3 然后输入上面的代码...... 或者在 S uper U ser DO sudo

中运行已编译的Python应用程序(完成后)

答案 2 :(得分:0)

您是否将文件命名为os.py?如果你这样做,它就会影响stdlib os模块。更改文件名称并删除os.pyc__pycache__

在脚本中执行print os或类似操作,以查看Python用于获取os模块的文件路径。