Files
openvino/docs/install_guides/installing-openvino-apt.md
Nikolay Tyukaev ef45b5da8d Doc Migration (master) (#1377)
* Doc Migration from Gitlab (#1289)

* doc migration

* fix

* Update FakeQuantize_1.md

* Update performance_benchmarks.md

* Updates graphs for FPGA

* Update performance_benchmarks.md

* Change DL Workbench structure (#1)

* Changed DL Workbench structure

* Fixed tags

* fixes

* Update ie_docs.xml

* Update performance_benchmarks_faq.md

* Fixes in DL Workbench layout

* Fixes for CVS-31290

* [DL Workbench] Minor correction

* Fix for CVS-30955

* Added nGraph deprecation notice as requested by Zoe

* fix broken links in api doxy layouts

* CVS-31131 fixes

* Additional fixes

* Fixed POT TOC

* Update PAC_Configure.md

PAC DCP 1.2.1 install guide.

* Update inference_engine_intro.md

* fix broken link

* Update opset.md

* fix

* added opset4 to layout

* added new opsets to layout, set labels for them

* Update VisionAcceleratorFPGA_Configure.md

Updated from 2020.3 to 2020.4

Co-authored-by: domi2000 <domi2000@users.noreply.github.com>
2020-07-20 17:36:08 +03:00

4.6 KiB

Install Intel® Distribution of OpenVINO™ toolkit for Linux* Using APT Repository

This guide provides installation steps for Intel® Distribution of OpenVINO™ toolkit for Linux* distributed through the APT repository.

Important

: By downloading and using this container and the included software, you agree to the terms and conditions of the software license agreements. Please, review the content inside the <openvino_install_root>/licensing folder for more details.

Note

: Intel® Graphics Compute Runtime for OpenCL™ is not a part of OpenVINO™ APT distribution. You can install it from the Intel® Graphics Compute Runtime for OpenCL™ GitHub repo.

Set up the Repository

Install the GPG key for the repository

  1. Download the public key from https://apt.repos.intel.com/openvino/2020/GPG-PUB-KEY-INTEL-OPENVINO-2020 and save it to a file.
  2. Add this key to the system keyring:
sudo apt-key add <PATH_TO_DOWNLOADED_GPG_KEY>
  1. Check the list of APT keys running the following command:
sudo apt-key list

Add the APT Repository

Run the following command:

echo "deb https://apt.repos.intel.com/openvino/2020 all main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2020.list

Update the list of packages

Run the update command:

sudo apt update

There are full release Runtime and Developer packages, and also some available components.

Runtime Packages

  • Ubuntu 18.04: intel-openvino-runtime-ubuntu18
  • Ubuntu 16.04: intel-openvino-runtime-ubuntu16

Developer Packages

  • Ubuntu 18.04: intel-openvino-dev-ubuntu18
  • Ubuntu 16.04: intel-openvino-dev-ubuntu16

Get the list of available packages

Run the apt-cache command to see a list of all available OpenVINO packages and components:

apt-cache search openvino

Examples

  • Runtime Packages

    On Ubuntu 18.04:

    sudo apt-cache search intel-openvino-runtime-ubuntu18
    

    On Ubuntu 16.04:

    sudo apt-cache search intel-openvino-runtime-ubuntu16
    
  • Developer Packages

    On Ubuntu 18.04:

    sudo apt-cache search intel-openvino-dev-ubuntu18
    

    On Ubuntu 16.04:

    sudo apt-cache search intel-openvino-dev-ubuntu16
    

Install the runtime or developer packages using the APT Package Manager

Intel® OpenVINO will be installed in: /opt/intel/openvino_<VERSION>.<UPDATE>.<BUILD_NUM>

A symlink will be created: /opt/intel/openvino


To Install a specific version

To get a list of OpenVINO packages available for installation:

sudo apt-cache search intel-openvino-runtime-ubuntu18

To install a specific version of an OpenVINO package:

sudo apt install intel-openvino-<PACKAGE_TYPE>-ubuntu<OS_VERSION>-<VERSION>.<UPDATE>.<BUILD_NUM>

Examples

  • Runtime Package

    On Ubuntu 18.04:

    sudo apt install intel-openvino-runtime-ubuntu18-2020.1.023
    

    On Ubuntu 16.04:

    sudo apt install intel-openvino-runtime-ubuntu16-2020.1.023
    
  • Developer Package
    On Ubuntu 18.04:

    sudo apt install intel-openvino-dev-ubuntu18-2020.1.023 
    

    On Ubuntu 16.04:

    sudo apt install intel-openvino-dev-ubuntu16-2020.1.023
    

To Uninstall a specific version

To uninstall a specific full runtime package:

sudo apt autoremove intel-openvino-<PACKAGE_TYPE>-ubuntu<OS_VERSION>-<VERSION>.<UPDATE>.<BUILD_NUM>

Additional Resources