当我尝试这个命令时
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'
请帮我删除此错误。
答案 0 :(得分:0)
你以某种方式使用python2来运行/usr/bin/apt-add-repository
,你需要将shebang更改为#! /usr/bin/python3
或者你已经改变了python3指向的内容。运行head -n 1 /usr/bin/apt-add-repository
将显示shebang当前设置的内容。