adding TF on py3 and some new libs for TFLite and Caffe models
This commit is contained in:
parent
199a4dcb81
commit
7731b09275
|
@ -1,4 +0,0 @@
|
||||||
IMG_SUFFIX="-full"
|
|
||||||
if [ "${USE_QEMU}" = "1" ]; then
|
|
||||||
export IMG_SUFFIX="${IMG_SUFFIX}-qemu"
|
|
||||||
fi
|
|
|
@ -1,2 +0,0 @@
|
||||||
NOOBS_NAME="Raspbian Full"
|
|
||||||
NOOBS_DESCRIPTION="A port of Debian with desktop and recommended applications"
|
|
|
@ -3,10 +3,13 @@ python-nose
|
||||||
python-pip
|
python-pip
|
||||||
zip
|
zip
|
||||||
gfortran
|
gfortran
|
||||||
python-setuptools
|
python-setuptools python3-setuptools
|
||||||
python-pandas python3-pandas
|
python-pandas python3-pandas
|
||||||
python-scipy python3-scipy
|
python-scipy python3-scipy
|
||||||
libhdf5-dev
|
libhdf5-dev
|
||||||
build-essential cmake pkg-config libx11-dev
|
build-essential cmake pkg-config libx11-dev
|
||||||
libgtk-3-dev libboost-python-dev
|
libgtk-3-dev libboost-python-dev
|
||||||
python-markdown python3-markdown
|
python-markdown python3-markdown
|
||||||
|
libatlas-base-dev
|
||||||
|
libjasper-dev
|
||||||
|
libqtgui4 python3-pyqt5 libqt4-test
|
|
@ -6,9 +6,12 @@ tar xvzf mxnet.tar.gz -C "${ROOTFS_DIR}/opt"
|
||||||
rm -f mxnet.tar.gz
|
rm -f mxnet.tar.gz
|
||||||
|
|
||||||
on_chroot << EOF
|
on_chroot << EOF
|
||||||
pip -vv install imutils h5py dlib pandas scipy
|
pip -vv install imutils h5py dlib pandas scipy cython scikit-image
|
||||||
pip install markdown==3.1.1
|
pip install markdown==3.1.1
|
||||||
pip3 -vv install imutils h5py dlib pandas scipy
|
pip install numpy>=1.16.2
|
||||||
|
pip3 -vv install imutils h5py dlib pandas scipy cython scikit-image
|
||||||
|
pip3 install markdown>=3.1.1
|
||||||
|
pip3 install numpy>=1.16.2
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
on_chroot << EOF
|
on_chroot << EOF
|
||||||
|
@ -26,6 +29,11 @@ on_chroot << EOF
|
||||||
cd /opt
|
cd /opt
|
||||||
wget -c https://github.com/lhelontra/tensorflow-on-arm/releases/download/v1.14.0-buster/tensorflow-1.14.0-cp27-none-linux_armv7l.whl
|
wget -c https://github.com/lhelontra/tensorflow-on-arm/releases/download/v1.14.0-buster/tensorflow-1.14.0-cp27-none-linux_armv7l.whl
|
||||||
pip install -vv tensorflow-1.14.0-cp27-none-linux_armv7l.whl
|
pip install -vv tensorflow-1.14.0-cp27-none-linux_armv7l.whl
|
||||||
|
rm -f tensorflow-1.14.0-cp27-none-linux_armv7l.whl
|
||||||
|
|
||||||
|
wget -c https://github.com/lhelontra/tensorflow-on-arm/releases/download/v1.14.0/tensorflow-1.14.0-cp35-none-linux_armv7l.whl
|
||||||
|
pip3 install -vv tensorflow-1.14.0-cp35-none-linux_armv7l.whl
|
||||||
|
rm -f tensorflow-1.14.0-cp35-none-linux_armv7l.whl
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Install DL Framework
|
# Install DL Framework
|
||||||
|
|
6
stageX/06-sys-tweaks/00-packages
Normal file
6
stageX/06-sys-tweaks/00-packages
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
usb-modeswitch
|
||||||
|
ppp
|
||||||
|
udhcpc
|
||||||
|
libqmi-glib5 libqmi-proxy libqmi-utils
|
||||||
|
modemmanager modem-manager-gui
|
||||||
|
minicom
|
Loading…
Reference in New Issue
Block a user