1

我正在尝试在运行Raspbian Buster的树莓派上安装Sublime Text。所以我运行了这个并得到了这个:sudo add-apt-repository "ppa:webup8team/sublime-text-3For Sublime Text 2"

  File "/usr/bin/add-apt-repository", line 95, in <module>
    sp = SoftwareProperties(options=options)
  File "/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py", line 109, in __init__
    self.reload_sourceslist()
  File "/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py", line 599, in reload_sourceslist
    self.distro.get_sources(self.sourceslist)    
  File "/usr/lib/python3/dist-packages/aptsources/distro.py", line 93, in get_sources
    (self.id, self.codename))
aptsources.distro.NoDistroTemplateException: Error: could not find a distribution template for Raspbian/buster

请问,我该如何处理?我打算稍后运行它:

sudo add-apt-repository ppa:webupd8team/sublime-text-2
sudo apt-get update
sudo apt-get install sublime-text-installer
4

1 回答 1

2

您收到错误是因为您添加的存储库不知道哪些文件在 Rasbian/buster 中的位置。但是,如果您访问https://www.sublimetext.com/download,您会发现 Sublime Text 最新稳定版本的 32 位和 64 位 tarball 的链接。

您可以从命令行(tar jxvf filename.tar.bz2tar Jxvf filename.tar.xz)展开存档并将文件移动到您希望的任何位置 - 标准位置是/opt/sublime-text

您可能无法在 Raspberry Pi 上运行文件,因为处理器可能与 Intel 处理器不兼容二进制。Sublime Text 在 ARM 或其他处理器架构版本中不可用,只有 Intel。

我强烈建议不要安装 ST2,因为它已经过时了。ST4 目前是最新版本,比 ST3 有很多改进。

于 2020-06-07T18:18:10.787 回答