openvinotoolkit/openvino_tensorflow

openvino_tensorflow.dll not found

dineshnaikc opened this issue · 2 comments

while running following command after installing openvino_tensorflow.

python -c "import openvino_tensorflow; print(openvino_tensorflow.version)"

tensorflow.python.framework.errors_impl.NotFoundError: XXXXXXXXXXXXXXXXX \lib\site-packages\openvino_tensorflow\openvino_tensorflow.dll not found

no issues with tensorflow:

python -c "import tensorflow as tf; print('TensorFlow version: ',tf.version)"
2022-04-07 08:00:06.091197: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'cudart64_110.dll'; dlerror: cudart64_110.dll not found
2022-04-07 08:00:06.091694: I tensorflow/stream_executor/cuda/cudart_stub.cc:29] Ignore above cudart dlerror if you do not have a GPU set up on your machine.
TensorFlow version: 2.8.0

Pls follow the steps mentioned here: https://github.com/openvinotoolkit/openvino_tensorflow/blob/master/docs/INSTALL.md#12-install-openvino-integration-with-tensorflow-alongside-tensorflow-released-on-github-works-on-windows

And then try: python -c "import openvino_tensorflow; print(openvino_tensorflow.version)"

Note: In the installation step you would see that we are not using TensorFlow fromPyPi, and have a wheel hosted on our github assets. It is same as PyPi TensorFlow with some more APIs enabled, which is need by openvino-tensorflow.

works fine now with following installation steps
pip3 install -U pip
pip3 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v2.0.0/tensorflow-2.8.0-cp39-cp39-win_amd64.whl
pip3 install openvino-tensorflow==2.0.0