使用 mbed-cli 更新 Mbed 存储库时,出现以下错误:
john@john-ThinkPad-Yoga-11e:~/Projects/myRepo$ mbed update
[mbed] Working path "/home/john/Projects/myRepo" (program)
[mbed] Updating program "myRepo" to latest revision in the current branch
[mbed] Updating library "mbed-os" to rev #c966348d3f9c (tag: mbed-os-5.11.1)
*** failed to import extension hggit from /path/to/hg-git: [Errno 2] No such file or directory: '/path/to/hg-git'
*** failed to import extension hggit from /path/to/hg-git: [Errno 2] No such file or directory: '/path/to/hg-git'
我不想使用 hg-git,并试图完全删除它。Mbed-cli使用Python,所以我尝试了各种Python工具来删除hg-git,但仍然收到错误。 我什至不确定这实际上是 mbed-cli 的错误,因为它出现在我知道是 mbed 的一部分之后(即以"[mbed]"开头的行(。我还试图在文件中找到错误的源(使用'grep -rnw . -e "hg-git"'(,但作为Ubuntu上的新手,我无法做到这一点。
关于错误消息的来源和/或我如何摆脱它并完全删除 hg-git 的任何想法?
hggit
扩展在 Mercurial 配置中仍处于启用状态。
您可以通过运行以下命令显示设置配置的文件和行:hg config extensions.hggit --template '{source}n'
。
它可能会返回类似 /home/user/.hgrc:12
的内容。在这种情况下,您必须删除或注释掉文件/home/user/.hgrc
中的第 12 行以禁用hggit
扩展名。
使用apt
命令删除 hg-git
$ sudo apt remove hg-git