Steps to install OpenVINO™ Notebooks
- Downloaded OpenVINO™ Notebooks
- Installed required packages:
python -m pip install --upgrade pip
pip install -r requirements.txt - Encountered the error when importing notebook_utils:
ERROR: Import "notebook_utils" could not be resolvedPylancereportMissingImports
Follow the steps for your OS in the OpenVINO Notebooks Installation Guide
- Install additional libraries:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install python3-venv build-essential python3-dev git-all - Create a virtual environment:
python3 -m venv openvino_env
- Activate the virtual environment:
source openvino_env/bin/activate
- Clone the repository:
git clone --depth=1 https://github.com/openvinotoolkit/openvino_notebooks.git
cd openvino_notebooks - Install the dependencies packages:
python -m pip install --upgrade pip
pip install -r requirements.txt - Install the virtualenv Kernel in Jupyter:
python -m ipykernel install --user --name openvino_env