常见问题1:
我的系统里面已经安装了python3.8/python2.7,但是还是提示python: not found
解决方法:
(1)windows系统下,环境变量设置有问题,在“系统属性”->“环境变量”->“系统环境变量”中设置
(2)Linux系统下,python软链接可能有问题
安装python3:
Code: Select all
sudo apt-get install -y python3
获取当前python3路径:
Code: Select all
which python3
创建软链接:
Code: Select all
sudo ln -s /usr/bin/python3 /usr/bin/python
常见问题2:
TuyaOS开发框架已经带了交叉编译器,但是还是提示toolchain/gcc-arm-none-eabi-4_9-2015q1/bin/arm-none-eabi-gcc: not found
解决方法:
当前安装的Linux系统是64bit,而arm-none-eabi-gcc是32bit的,linux系统下需要安装32位的库,通过以下命令解决:
Code: Select all
sudo apt-get install -y libc6-i386