TX2__刷机后程序安装

1)浏览器和拼音安装

浏览器:

https://blog.csdn.net/qq_18292553/article/details/79179986

拼音:

https://blog.csdn.net/zhangjunhit/article/details/80364230

打开百度浏览网页:https://www.baidu.com/

2)python3.5安装

https://blog.csdn.net/qq_35239859/article/details/79868440

3)pip3安装

https://blog.csdn.net/jonado13/article/details/83933553

4)安装tensorflow

https://blog.csdn.net/zhangziju/article/details/85252474

安装过程出现如下错误:

tensorboard 1.9.0 has requirement numpy>=1.12.0, but you'll have numpy 1.11.0 which is incompatible.

解决方法:https://blog.csdn.net/sinat_23619409/article/details/85051583

sudo pip3 install --upgrade python-dateutil

ERROR: markdown 3.1.1 has requirement setuptools>=36, but you'll have setuptools 20.7.0 which is incompatible.

sudo pip3 install --upgrade setuptools

ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/usr/local/lib/python3.5/dist-packages/termcolor.py'
Consider using the `--user` option or check the permissions.

pip3 install  --user --extra-index-url https://developer.download.nvidia.com/compute/redist/jp33 tensorflow-gpu 

5)安装jupyter:参考博客:https://blog.csdn.net/weixin_40533355/article/details/81199105

sudo apt-get install python-dev python-pip libxml2-dev libxslt1-dev zlib1g-dev libffi-dev libssl-dev

pip3 install jupyter 

6) 安装keras:参考博客:https://blog.csdn.net/zhangziju/article/details/85252474

sudo apt-get install libhdf5-dev

sudo apt-get install python-h5py

sudo pip3 install keras

猜你喜欢

转载自www.cnblogs.com/shuimuqingyang/p/11088292.html