Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated APT/YUM install instructions for 2023.0.0 #17561

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions docs/install_guides/installing-openvino-apt.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,19 @@ Step 1: Set Up the OpenVINO Toolkit APT Repository

.. code-block:: sh

echo "deb https://apt.repos.intel.com/openvino/2022 bionic main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2022.list
echo "deb https://apt.repos.intel.com/openvino/2023 ubuntu18 main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2023.list

.. tab:: Ubuntu 20

.. code-block:: sh

echo "deb https://apt.repos.intel.com/openvino/2022 focal main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2022.list
echo "deb https://apt.repos.intel.com/openvino/2023 ubuntu20 main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2023.list

.. tab:: Ubuntu 22

.. code-block:: sh

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


3. Update the list of packages via the update command:
Expand Down Expand Up @@ -139,7 +145,7 @@ Install OpenVINO Runtime

.. code-block:: sh

sudo apt install openvino-2022.3.0
sudo apt install openvino-2023.0.0

.. note::

Expand Down Expand Up @@ -216,7 +222,7 @@ To uninstall OpenVINO Runtime via APT, run the following command based on your n

.. code-block:: sh

sudo apt autoremove openvino-2022.3.0
sudo apt autoremove openvino-2023.0.0


What's Next?
Expand Down
16 changes: 8 additions & 8 deletions docs/install_guides/installing-openvino-yum.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,25 +54,25 @@ Step 1: Set Up the Repository
+++++++++++++++++++++++++++++


1. Create a YUM repository file (``openvino-2022.repo``) in the ``/tmp`` directory as a normal user:
1. Create a YUM repository file (``openvino-2023.repo``) in the ``/tmp`` directory as a normal user:

.. code-block:: sh

tee > /tmp/openvino-2022.repo << EOF
tee > /tmp/openvino-2023.repo << EOF
[OpenVINO]
name=Intel(R) Distribution of OpenVINO 2022
baseurl=https://yum.repos.intel.com/openvino/2022
name=Intel(R) Distribution of OpenVINO 2023
baseurl=https://yum.repos.intel.com/openvino/2023
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
EOF

2. Move the new ``openvino-2022.repo`` file to the YUM configuration directory, i.e. ``/etc/yum.repos.d``:
2. Move the new ``openvino-2023.repo`` file to the YUM configuration directory, i.e. ``/etc/yum.repos.d``:

.. code-block:: sh

sudo mv /tmp/openvino-2022.repo /etc/yum.repos.d
sudo mv /tmp/openvino-2023.repo /etc/yum.repos.d

3. Verify that the new repository is set up properly.

Expand Down Expand Up @@ -118,7 +118,7 @@ Install OpenVINO Runtime

.. code-block:: sh

sudo yum install openvino-2022.3.0
sudo yum install openvino-2023.0.0



Expand Down Expand Up @@ -193,7 +193,7 @@ To uninstall OpenVINO Runtime via YUM, run the following command based on your n

.. code-block:: sh

sudo yum autoremove openvino-2022.3.0
sudo yum autoremove openvino-2023.0.0



Expand Down