[DOCS] Add numpy to installation instructions for master (#19127)

* add-numpy

* Apply suggestions from code review

Co-authored-by: Ilya Lavrenov <ilya.lavrenov@intel.com>

* Apply suggestions from code review

Co-authored-by: Ilya Lavrenov <ilya.lavrenov@intel.com>

---------

Co-authored-by: Ilya Lavrenov <ilya.lavrenov@intel.com>
This commit is contained in:
Sebastian Golebiewski 2023-08-16 10:20:49 +02:00 committed by GitHub
parent 74c237de2e
commit 2a8143f548
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 42 additions and 3 deletions

View File

@ -184,7 +184,20 @@ Step 1: Download and Install the OpenVINO Core Components
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:
6. (Optional) Install *numpy* Python Library:
.. note::
This step is required only when you decide to use Python API.
You can use the ``requirements.txt`` file from the ``/opt/intel/openvino_2023.0.1/python`` folder:
.. code-block:: sh
cd /opt/intel/openvino_2023.0.1
python3 -m pip install -r ./python/requirements.txt
7. For simplicity, it is useful to create a symbolic link as below:
.. code-block:: sh

View File

@ -83,8 +83,20 @@ Step 1: Install OpenVINO Core Components
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. (Optional) Install *numpy* Python Library:
5. For simplicity, it is useful to create a symbolic link as below:
.. note::
This step is required only when you decide to use Python API.
You can use the ``requirements.txt`` file from the ``/opt/intel/openvino_2023.0.1/python`` folder:
.. code-block:: sh
cd /opt/intel/openvino_2023.0.1
python3 -m pip install -r ./python/requirements.txt
6. For simplicity, it is useful to create a symbolic link as below:
.. code-block:: sh

View File

@ -107,7 +107,21 @@ Step 1: Download and Install OpenVINO Core Components
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:
4. (Optional) Install *numpy* Python Library:
.. note::
This step is required only when you decide to use Python API.
You can use the ``requirements.txt`` file from the ``C:\Program Files (x86)\Intel\openvino_2023.0.1\python`` folder:
.. code-block:: sh
cd "C:\Program Files (x86)\Intel\openvino_2023.0.1"
python -m pip install -r .\python\requirements.txt
5. 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:
.. code-block:: sh