NX

更换国内软件源

https://blog.csdn.net/darnell888/article/details/106644437

python3.6->python3.7way 

https://www.cnblogs.com/zealousness/p/11550811.html  

 

NX 相关组件安装

https://blog.csdn.net/zbb297918657/article/details/106403331

 

设置静态ip

sudo gedit /etc/network/interfaces
将interfaces文件中的原有内容注释掉。添加以下内容
auto eth0 #使用的网络接口
iface eth0 inet static #eth0 使用静态ip设置
address 172.168.1.10 #设置静态ip为172.168.1.10
netmask 255.255.255.0 #设置子网掩码
gateway 172.168.1.1 #设置网关
dns-nameservers 8.8.8.8 #设置dns服务器地址


二、刷新IP:

sudo ip addr flush eth0


三、重启网络服务:

sudo systemctl restart networking.service


四、确保重启网络服务管理项启动

sudo gedit /etc/NetworkManager/NetworkManager.conf

确保managed = true
如果不是,更改完之后执行:
sudo service network-manager restart


五、重启机器就生效了。 sudo reboot

 

Ubuntu使用dpkg查看与修改architecture的用法 

https://blog.csdn.net/qiuchangyong/article/details/97505379

 

package architecture (amd64) does not match system (arm64)

sudo dpkg --add-architecture amd64 (can not apt update,so sue  )

sudo dpkg --remove-architecture amd64

 

apt-get -f -y install  解决依赖问题后再执行dpkg安装deb包

 

 

-------------------------kouzhoa 

https://my.oschina.net/u/4067628/blog/3224946    how to upgrade model

 

c++   paddlelite api

https://paddle-lite.readthedocs.io/zh/latest/api_reference/cxx_api_doc.html

 

编译paddlelite 

https://paddle-lite.readthedocs.io/zh/latest/source_compile/compile_linux.html

 

paddle2.6项目地址

https://github.com/hang245141253/raspi4B_mask_detection_runtime