尝试在GitGutter上安装Sublime Text 3时,我在控制台中得到以下信息:
ignored packages updated to: ["GitGutter", "Vintage"]
reloading settings Packages/User/Package Control.sublime-settings
reloading settings Packages/User/Preferences.sublime-settings
Package Control: The dependency 'markupsafe' is not currently installed; installing...
Package Control: Error downloading package. HTTP exception BadStatusLine ('') downloading https://bitbucket.org/teddy_beer_maniac/sublime-text-dependency-markupsafe/get/0.23.0.zip.
error: Package Control
Unable to download markupsafe. Please view the console for more details.
Package Control: The dependency 'markupsafe' could not be installed or updated
ignored packages updated to: ["Vintage"]
reloading settings Packages/User/Package Control.sublime-settings
reloading settings Packages/User/Preferences.sublime-settings
reloading settings Packages/User/Preferences.sublime-settings
我已经从this link中将所需的依赖项下载为.zip
文件,现在该文件位于我的Downloads
文件夹中
下一步是什么,我应该在哪里放置该文件,以便手动安装markupsafe
。
附言::我正在使用Ubuntu 18.04,并计划使用sublime进行Python开发。
答案 0 :(得分:0)
对于将来像我这样来到这里的人们,在Githib上有一些与此有关的问题,他们的症结在于Github和Package Control
的问题导致了这一问题。
它们在这里被跟踪:https://github.com/wbond/package_control/issues/1334
对我有用的一种可能的修复方法是更新Package Control的用户设置并添加以下行:
"downloader_precedence":
{
"linux": [ "curl","wget","urllib"],
"osx": ["curl","wget","urllib"]
}