tflite_runtime未托管在pypi中,但可以安装为:
pip3 install --extra-index-url https://google-coral.github.io/py-repo/ tflite_runtime
如何打包具有此依赖项的项目?
我看过这个setuptools文档和一些线程1、2,但到目前为止运气不好。
设置.cfg
[options]
...
dependency_links = https://google-coral.github.io/py-repo/tflite-runtime/
install_requires =
tflite_runtime==2.5.0
额外奖励:在本地我使用mac。我的部署将在linux上进行。有没有一种方法可以基于操作系统安装正确的whl?
这对我安装.whl包并使其特定于操作系统起到了作用。
设置.py
import setuptools
import platform
# tflite for linux
tflite = "tflite_runtime@https://github.../tflite_runtime-...-cp37m-linux...",
if platform.system() == 'Darwin':
# tflite for macos
tflite = "tflite_runtime@https://github../tflite_runtime...cp37m-macosx..."
setuptools.setup(
include_package_data=True,
install_requires=[
tflite,
...
]
一个更干净的方法应该是使用环境标记,但我无法做到这一点。