Reputation: 1
Running "%pip show openvino" in Jupyter notebook, besides normal information, there is a Note: you may need to restart the kernel to use updated packages.
I have installed OpenVINO in Anaconda.Nevigator. When I tried to run "%pip show openvino" in Jupyter notebook, the output is: Name: openvino Version: 2024.0.0 Summary: OpenVINO(TM) Runtime Home-page: https://docs.openvino.ai/2023.0/index.html Author: Intel(R) Corporation Author-email: [email protected] License: OSI Approved :: Apache Software License Location: D:\Anaconda\envs\myEnvironment\Lib\site-packages Requires: numpy, openvino-telemetry, packaging Required-by: Note: you may need to restart the kernel to use updated packages. It seems something wrong. I restarted the kernel and tried again. Nothing changed.
Upvotes: 0
Views: 706
Reputation: 86
Run the command below to verify the OpenVINO™ package is installed in the environment:
from openvino import Core
print(Core().available_devices)
If the installation is successful, the list of available devices will be printed.
Upvotes: 0