Here you go, the procedure and guidelines for installation with ubuntu is presented.
1. Update and upgrade the system:
sudo apt-get update
sudo apt-get upgrade
2. Install Python 3, Git, and additional libraries:
sudo apt-get install python3-venv build-essential python3-dev git-all libgl1-mesa-dev ffmpeg
3. Optional: Install Intel Graphics Compute Runtime [https://github.com/intel/compute-runtime ](if using Intel Integrated Graphics):
sudo apt-get install intel-opencl-icd
Install the Notebooks
1. Create a virtual environment:
python3 -m venv openvino_env
2. Activate the virtual environment:
source openvino_env/bin/activate
3. Clone the OpenVINO notebooks repository:
git clone --depth=1 https://github.com/openvinotoolkit/op...
cd openvino_notebooks
4. Install the required packages and dependencies:
python -m pip install --upgrade pip
pip install wheel setuptools
pip install -r requirements.txt
Launch the Notebooks
1. To launch a single notebook, such as the PyTorch to OpenVINO notebook:
jupyter lab notebooks/pytorch-to-openvino/pytorch-to-openvino.ipynb
2. To launch all notebooks in Jupyter Lab (localhost only):
jupyter lab notebooks
3. To launch all notebooks available from any host:
jupyter lab notebooks --ip 0.0.0.0