拷贝 imx-android-10.0.0_2.5.0.tar.gz 到一个文件夹里并解压,进入:
git clone https://mirrors.tuna.tsinghua.edu.cn/git/git-repo
修改 repo 里的内容为下面
REPO_URL = 'https://mirrors.bfsu.edu.cn/git/git-repo'
然后添加repo到环境变量
export PATH=$PATH:git-repo的绝对路径
执行下面命令
source imx_android_setup.sh
肯定会报错,因为NXP默认的是谷歌官方的地址,要终止掉命令,我们使用的是imx-android-10.0.0_2.5.0版本所以找到文件:
imx-android-10.0.0_2.5.0/android_build/.repo/manifests/imx-android-10.0.0_2.5.0.xml
里面没有找到谷歌的地址,但是它有包含头文件,找到头文件:
imx-android-10.0.0_2.5.0/android_build/.repo/manifests/aosp-android-10.0.0_2.5.0.xml
把原来的内容修改为下面
<remote name="aosp"
fetch="https://mirrors.bfsu.edu.cn/git/AOSP/"
review="/" />
然后重新执行
source imx_android_setup.sh
#1、下载Python3
wget http://www.python.org/ftp/python/3.6.4/Python-3.6.4.tgz
#wget会将文件下载到当前目录下,所以下载前选好目录。
#2、下载完成后,解压
tar -xvzf Python-3.6.4.tgz
#3、解压完成后,切换到Python3文件夹中
cd ./Python-3.6.4
#4、分别执行
./configure --with-ssl
make
sudo make install
#5、输入Python3验证
Python3