-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrequirements.macos.txt
More file actions
32 lines (24 loc) · 1.56 KB
/
requirements.macos.txt
File metadata and controls
32 lines (24 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#! Python3.8
numpy==1.23 # Installing NumPy, the fundamental package for array computing with Python.
# For Coral, we need Tensorflow (preferably TF-Lite) and the Coral library. The
# last pre-built TF-Lite for macOS that supports Coral is for macOS 11 on Intel,
# or macOS 12 on Apple silicon. However, TensorFlow does include TF-Lite (it's
# just a bigger- than-needed download) so we can install TensorFlow for macOS.
#
# For Coral support outside of these two macOS versions, we are going to have to
# build Tensorflow ourselves. See
#
# - https://github.com/jkjung-avt/jetson_nano/blob/master/install_tensorflow-2.0.0.sh - full example of build/install
# - https://hub.docker.com/r/tensorflow/build - for the docker build images
# - https://www.tensorflow.org/lite/guide/build_cmake_pip - official instructions
# - https://medium.com/@andrewlr/building-the-tensorflow-lite-python-tflite-runtime-on-a-raspberry-pi-zero-116bfa38be3f - useful instructions
# We don't install tensorflow here: we install it in the install.sh to set the
# library version correctly
# tensorflow # Installing Tensorflow, the open source machine learning framework for everyone
# --extra-index-url https://google-coral.github.io/py-repo/
# tflite-runtime==2.5.0.post1 # Installing Tensorflow Lite
# --extra-index-url https://google-coral.github.io/py-repo/
# pycoral~=2.0 # Installing PyCoral
Pillow>=4.0.0,<10.0 # Installing Pillow, a Python Image Library
CodeProject-AI-SDK # Installing the CodeProject.AI SDK
# last line empty