ubuntu apt-add-repository显示错误

时间:2015-12-27 16:37:13

标签: python ubuntu

当我尝试这个命令时

  sudo apt-add-repository ppa:jd-team/jdownloader

我收到此错误

Traceback (most recent call last):
  File "/usr/bin/apt-add-repository", line 22, in <module>
    sys.stdout.detach(), encoding="UTF-8", line_buffering=True)
AttributeError: 'file' object has no attribute 'detach'

请帮我删除此错误。

1 个答案:

答案 0 :(得分:0)

你以某种方式使用python2来运行/usr/bin/apt-add-repository,你需要将shebang更改为#! /usr/bin/python3或者你已经改变了python3指向的内容。运行head -n 1 /usr/bin/apt-add-repository将显示shebang当前设置的内容。