上电之后出现这种情况!切记!!!别点任何按钮!!!直接拔电源断电1分钟重新上电!!!!!
https://paddleinference.paddlepaddle.org.cn/master/user_guides/download_lib.html#windows
fuc3001自带的14GB系统盘不足以承载程序运行的空间,开机第一步更换系统盘。在home下创建kaifa文件夹
执行命令:df -h
复制TF卡设备名字
更换系统盘资料地址: https://www.cnblogs.com/gooutlook/p/15632427.html
Command not found解决办法: https://blog.csdn.net/weixin_33852020/article/details/86401149
https://blog.csdn.net/qq_63379469/article/details/123442589
https://blog.csdn.net/hymnal/article/details/123522838
https://blog.csdn.net/yc461515457/article/details/53610412/
https://blog.csdn.net/hj1997a/article/details/101030351
https://blog.csdn.net/u014775723/article/details/85213793
sudo apt-get update
sudo apt-get install libgeos-dev
sudo apt-get install python3-scipy
sudo apt-get install libblas-dev liblapack-dev
sudo apt-get install gfortran
sudo apt-get install libgeos-dev
ubuntu_18.04系统预装了python2.7和python3.6。paddlepaddle需要的环境是python3.6/7/8,所以装paddle环境前需要先更改python版本指向
ls -l /usr/bin | grep python
rm /usr/bin/python
ln -s /usr/bin/python3.6 /usr/bin/python
sudo apt install python3-pip
pip3 install --upgrade pip
pip install --upgrade setuptools
paddle编译需要numpy1.19.4
pip uninstall numpy
pip install numpy==1.19.4 -i https://mirror.baidu.com/pypi/simple
参考飞凌技术资料第四章
sudo -s
vi ~/.bashrc
在文件末尾添加环境变量
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda-10.2/lib64
export PATH=$PATH:/usr/local/cuda-10.2/bin
export CUDA_HOME=$CUDA_HOME:/usr/local/cuda-10.2
保存退出
wq!
更新配置文件
source ~/.bashrc
更换百度源
pip install 依赖名字 -i https://mirror.baidu.com/pypi/simple
tqdm
scipy
colorama
cython
pycocotools
visualdl
shapely
opencv-python
lap
motmetrics
matplotlib
chardet
openpyxl
redis
websocket-client
安装完以上依赖以后 scikit-learn==0.23.2 自行编译.whl文件
python setup.py bdist_wheel
cd dist
ls dist
scikit_learn-0.23.2-cp36-cp36m-linux_aarch64.whl
paddlepaddle基础环境使用.whl文件安装
paddlepaddle编译文件下载地址:https://paddleinference.paddlepaddle.org.cn/user_guides/download_lib.html#python
paddlepaddle_gpu-2.2.1-cp36-cp36m-linux_aarch64.whl
pip install paddlex -i https://mirror.baidu.com/pypi/simple
https://blog.csdn.net/super828/article/details/80955914
~~https://blog.csdn.net/weixin_41010198/article/details/113646331 ~~
https://blog.csdn.net/qq_42495740/article/details/119946010
pip install numpy
pip install protobuf
sudo apt-get install protobuf-compiler libprotoc-dev
sudo apt-get install cmake build-essential pkg-config libgoogle-perftools-dev
git clone https://github.com/google/sentencepiece
cd sentencepiece
mkdir build
cd build
cmake …
make -j $(nproc)
sudo make install
sudo ldconfig -v
https://blog.csdn.net/qq_35759574/article/details/90401535