YOCTO 下载repo工具失败解决办法

curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o repo

cp repo ~/bin

chmod a+x ~/bin/repo

如果使用时报错, 切换ubuntu 到 python3 版本。

gedit repo   修改repo默认链接地址:

REPO_URL = "https://gerrit.googlesource.com/git-repo"

修改为以下链接

REPO_URL = "https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/"

你可能感兴趣的:(yocto)