[DOCS] update for install 23.0.1 (#18334)
This commit is contained in:
parent
cb7c47b0e3
commit
9dd27dd810
@ -326,7 +326,7 @@ The OpenVINO environment variables are removed when you close the shell. As an o
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
source /opt/intel/openvino_2022/setupvars.sh
|
||||
source /opt/intel/openvino_2023/setupvars.sh
|
||||
|
||||
3. Save and close the file: press the **Esc** key, type ``:wq`` and press the **Enter** key.
|
||||
4. To test your change, open a new terminal. You will see ``[setupvars.sh] OpenVINO environment initialized``.
|
||||
|
@ -148,7 +148,7 @@ For example, to install and configure dependencies required for working with Ten
|
||||
|
||||
Model conversion API support for TensorFlow 1.x environment has been deprecated. Use the ``tensorflow2`` parameter to install a TensorFlow 2.x environment that can convert both TensorFlow 1.x and 2.x models. If your model isn't compatible with the TensorFlow 2.x environment, use the `tensorflow` parameter to install the TensorFlow 1.x environment. The TF 1.x environment is provided only for legacy compatibility reasons.
|
||||
|
||||
For more details on the openvino-dev PyPI package, see `pypi.org <https://pypi.org/project/openvino-dev/>`__ .
|
||||
For more details on the openvino-dev PyPI package, see `pypi.org <https://pypi.org/project/openvino-dev/2023.0.1>`__ .
|
||||
|
||||
Step 5. Test the Installation
|
||||
+++++++++++++++++++++++++++++
|
||||
|
@ -61,7 +61,7 @@ Installing OpenVINO Runtime with Anaconda Package Manager
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
conda install -c conda-forge openvino=2023.0.0
|
||||
conda install -c conda-forge openvino=2023.0.1
|
||||
|
||||
Congratulations! You have finished installing OpenVINO Runtime.
|
||||
|
||||
@ -94,7 +94,7 @@ with the proper OpenVINO version number:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
conda remove openvino=2023.0.0
|
||||
conda remove openvino=2023.0.1
|
||||
|
||||
|
||||
What's Next?
|
||||
|
@ -95,6 +95,7 @@ Step 1: Download and Install the OpenVINO Core Components
|
||||
sudo mkdir /opt/intel
|
||||
|
||||
.. note::
|
||||
|
||||
The ``/opt/intel`` path is the recommended folder path for administrators or root users. If you prefer to install OpenVINO in regular userspace, the recommended path is ``/home/<USER>/intel``. You may use a different path if desired.
|
||||
|
||||
3. Browse to the current user's ``Downloads`` folder:
|
||||
@ -103,7 +104,7 @@ Step 1: Download and Install the OpenVINO Core Components
|
||||
|
||||
cd <user_home>/Downloads
|
||||
|
||||
4. Download the `OpenVINO Runtime archive file for your system <https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/>`_, extract the files, rename the extracted folder and move it to the desired path:
|
||||
4. Download the `OpenVINO Runtime archive file for your system <https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0.1/linux/>`_, extract the files, rename the extracted folder and move it to the desired path:
|
||||
|
||||
.. tab-set::
|
||||
|
||||
@ -116,71 +117,71 @@ Step 1: Download and Install the OpenVINO Core Components
|
||||
:sync: ubuntu22
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_ubuntu22_2023.0.0.10926.b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_ubuntu22_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0.1/linux/l_openvino_toolkit_ubuntu22_2023.0.1.11005.fa1c41994f3_x86_64.tgz --output openvino_2023.0.1.tgz
|
||||
tar -xf openvino_2023.0.1.tgz
|
||||
sudo mv l_openvino_toolkit_ubuntu22_2023.0.1.11005.fa1c41994f3_x86_64 /opt/intel/openvino_2023.0.1
|
||||
|
||||
.. tab-item:: Ubuntu 20.04
|
||||
:sync: ubuntu20
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_ubuntu20_2023.0.0.10926.b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_ubuntu20_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0.1/linux/l_openvino_toolkit_ubuntu20_2023.0.1.11005.fa1c41994f3_x86_64.tgz --output openvino_2023.0.1.tgz
|
||||
tar -xf openvino_2023.0.1.tgz
|
||||
sudo mv l_openvino_toolkit_ubuntu20_2023.0.1.11005.fa1c41994f3_x86_64 /opt/intel/openvino_2023.0.1
|
||||
|
||||
.. tab-item:: Ubuntu 18.04
|
||||
:sync: ubuntu18
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_ubuntu18_2023.0.0.10926.b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_ubuntu18_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0.1/linux/l_openvino_toolkit_ubuntu18_2023.0.1.11005.fa1c41994f3_x86_64.tgz --output openvino_2023.0.1.tgz
|
||||
tar -xf openvino_2023.0.1.tgz
|
||||
sudo mv l_openvino_toolkit_ubuntu18_2023.0.1.11005.fa1c41994f3_x86_64 /opt/intel/openvino_2023.0.1
|
||||
|
||||
.. tab-item:: RHEL 8
|
||||
:sync: rhel8
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_rhel8_2023.0.0.10926.b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_rhel8_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0.1/linux/l_openvino_toolkit_rhel8_2023.0.1.11005.fa1c41994f3_x86_64.tgz --output openvino_2023.0.1.tgz
|
||||
tar -xf openvino_2023.0.1.tgz
|
||||
sudo mv l_openvino_toolkit_rhel8_2023.0.1.11005.fa1c41994f3_x86_64 /opt/intel/openvino_2023.0.1
|
||||
|
||||
.. tab-item:: CentOS 7
|
||||
:sync: centos7
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_centos7_2023.0.0.10926.b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_centos7_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0.1/linux/l_openvino_toolkit_centos7_2023.0.1.11005.fa1c41994f3_x86_64.tgz --output openvino_2023.0.1.tgz
|
||||
tar -xf openvino_2023.0.1.tgz
|
||||
sudo mv l_openvino_toolkit_centos7_2023.0.1.11005.fa1c41994f3_x86_64 /opt/intel/openvino_2023.0.1
|
||||
|
||||
.. tab-item:: ARM 64-bit
|
||||
:sync: arm-64
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_debian9_2023.0.0.10926.b4452d56304_arm64.tgz -O openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_debian9_2023.0.0.10926.b4452d56304_arm64 /opt/intel/openvino_2023.0.0
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0.1/linux/l_openvino_toolkit_debian9_2023.0.1.11005.fa1c41994f3_arm64.tgz -O openvino_2023.0.1.tgz
|
||||
tar -xf openvino_2023.0.1.tgz
|
||||
sudo mv l_openvino_toolkit_debian9_2023.0.1.11005.fa1c41994f3_arm64 /opt/intel/openvino_2023.0.1
|
||||
|
||||
.. tab-item:: ARM 32-bit
|
||||
:sync: arm-32
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_debian9_2023.0.0.10926.b4452d56304_armhf.tgz -O openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_debian9_2023.0.0.10926.b4452d56304_armhf /opt/intel/openvino_2023.0.0
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0.1/linux/l_openvino_toolkit_debian9_2023.0.1.11005.fa1c41994f3_armhf.tgz -O openvino_2023.0.1.tgz
|
||||
tar -xf openvino_2023.0.1.tgz
|
||||
sudo mv l_openvino_toolkit_debian9_2023.0.1.11005.fa1c41994f3_armhf /opt/intel/openvino_2023.0.1
|
||||
|
||||
|
||||
5. Install required system dependencies on Linux. To do this, OpenVINO provides a script in the extracted installation directory. Run the following command:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
cd /opt/intel/openvino_2023.0.0
|
||||
cd /opt/intel/openvino_2023.0.1
|
||||
sudo -E ./install_dependencies/install_openvino_dependencies.sh
|
||||
|
||||
6. For simplicity, it is useful to create a symbolic link as below:
|
||||
@ -188,7 +189,7 @@ Step 1: Download and Install the OpenVINO Core Components
|
||||
.. code-block:: sh
|
||||
|
||||
cd /opt/intel
|
||||
sudo ln -s openvino_2023.0.0 openvino_2023
|
||||
sudo ln -s openvino_2023.0.1 openvino_2023
|
||||
|
||||
.. note::
|
||||
If you have already installed a previous release of OpenVINO 2023, a symbolic link to the ``openvino_2023`` folder may already exist.
|
||||
|
@ -61,7 +61,7 @@ Step 1: Install OpenVINO Core Components
|
||||
cd <user_home>/Downloads
|
||||
|
||||
|
||||
4. Download the `OpenVINO Runtime archive file for macOS <https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/macos/>`__, extract the files, rename the extracted folder and move it to the desired path:
|
||||
4. Download the `OpenVINO Runtime archive file for macOS <https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0.1/macos/>`__, extract the files, rename the extracted folder and move it to the desired path:
|
||||
|
||||
.. tab-set::
|
||||
|
||||
@ -70,25 +70,25 @@ Step 1: Install OpenVINO Core Components
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/macos/m_openvino_toolkit_macos_10_15_2023.0.0.10926.b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv m_openvino_toolkit_macos_10_15_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0.1/macos/m_openvino_toolkit_macos_10_15_2023.0.1.11005.fa1c41994f3_x86_64.tgz --output openvino_2023.0.1.tgz
|
||||
tar -xf openvino_2023.0.1.tgz
|
||||
sudo mv m_openvino_toolkit_macos_10_15_2023.0.1.11005.fa1c41994f3_x86_64 /opt/intel/openvino_2023.0.1
|
||||
|
||||
.. tab-item:: ARM, 64-bit
|
||||
:sync: arm-64bit
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/macos/m_openvino_toolkit_macos_11_0_2023.0.0.10926.b4452d56304_arm64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv m_openvino_toolkit_macos_11_0_2023.0.0.10926.b4452d56304_arm64 /opt/intel/openvino_2023.0.0
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0.1/macos/m_openvino_toolkit_macos_11_0_2023.0.1.11005.fa1c41994f3_arm64.tgz --output openvino_2023.0.1.tgz
|
||||
tar -xf openvino_2023.0.1.tgz
|
||||
sudo mv m_openvino_toolkit_macos_11_0_2023.0.1.11005.fa1c41994f3_arm64 /opt/intel/openvino_2023.0.1
|
||||
|
||||
|
||||
5. For simplicity, it is useful to create a symbolic link as below:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
sudo ln -s /opt/intel/openvino_2023.0.0 /opt/intel/openvino_2023
|
||||
sudo ln -s /opt/intel/openvino_2023.0.1 /opt/intel/openvino_2023
|
||||
|
||||
|
||||
.. note::
|
||||
|
@ -81,30 +81,30 @@ Step 1: Download and Install OpenVINO Core Components
|
||||
``C:\Program Files (x86)\Intel`` is the recommended folder. You may also use a different path if desired or if you don't have administrator privileges on your computer.
|
||||
|
||||
|
||||
2. Download the `OpenVINO Runtime archive file for Windows <https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/windows/>`__ to your local ``Downloads`` folder.
|
||||
2. Download the `OpenVINO Runtime archive file for Windows <https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0.1/windows/>`__ to your local ``Downloads`` folder.
|
||||
|
||||
If you prefer using command-lines, run the following commands in the command prompt window you opened:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
cd <user_home>/Downloads
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/windows/w_openvino_toolkit_windows_2023.0.0.10926.b4452d56304_x86_64.zip --output openvino_2023.0.0.zip
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0.1/windows/w_openvino_toolkit_windows_2023.0.1.11005.fa1c41994f3_x86_64.zip --output openvino_2023.0.1.zip
|
||||
|
||||
|
||||
.. note::
|
||||
|
||||
A ``.sha256`` file is provided together with the archive file to validate your download process. To do that, download the ``.sha256`` file from the same repository and run ``CertUtil -hashfile openvino_2023.0.0.zip SHA256``. Compare the returned value in the output with what's in the ``.sha256`` file: if the values are the same, you have downloaded the correct file successfully; if not, create a Support ticket `here <https://www.intel.com/content/www/us/en/support/contact-intel.html>`__.
|
||||
A ``.sha256`` file is provided together with the archive file to validate your download process. To do that, download the ``.sha256`` file from the same repository and run ``CertUtil -hashfile openvino_2023.0.1.zip SHA256``. Compare the returned value in the output with what's in the ``.sha256`` file: if the values are the same, you have downloaded the correct file successfully; if not, create a Support ticket `here <https://www.intel.com/content/www/us/en/support/contact-intel.html>`__.
|
||||
|
||||
|
||||
3. Use your favorite tool to extract the archive file, rename the extracted folder, and move it to the ``C:\Program Files (x86)\Intel`` directory.
|
||||
|
||||
To do this step using command-lines, run the following commands in the command prompt window you opened:
|
||||
To do this step using command-line, run the following commands in the command prompt window you opened:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
tar -xf openvino_2023.0.0.zip
|
||||
ren w_openvino_toolkit_windows_2023.0.0.10926.b4452d56304_x86_64 openvino_2023.0.0
|
||||
move openvino_2023.0.0 "C:\Program Files (x86)\Intel"
|
||||
tar -xf openvino_2023.0.1.zip
|
||||
ren w_openvino_toolkit_windows_2023.0.0.10926.b4452d56304_x86_64 openvino_2023.0.1
|
||||
move openvino_2023.0.1 "C:\Program Files (x86)\Intel"
|
||||
|
||||
|
||||
4. For simplicity, it is useful to create a symbolic link. Open a command prompt window as administrator (see Step 1 for how to do this) and run the following commands:
|
||||
@ -112,7 +112,7 @@ Step 1: Download and Install OpenVINO Core Components
|
||||
.. code-block:: sh
|
||||
|
||||
cd C:\Program Files (x86)\Intel
|
||||
mklink /D openvino_2023 openvino_2023.0.0
|
||||
mklink /D openvino_2023 openvino_2023.0.1
|
||||
|
||||
|
||||
.. note::
|
||||
|
Loading…
Reference in New Issue
Block a user