Skip to content

Commit 439951d

Browse files
[DOCS] Reorganize conda forge installation article for 24.3 (#26229)
Porting: #26225
1 parent 513058c commit 439951d

File tree

1 file changed

+35
-37
lines changed

1 file changed

+35
-37
lines changed

docs/articles_en/get-started/install-openvino/install-openvino-conda.rst

+35-37
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,41 @@ need to install additional components. Check the description below, as well as t
7171
:doc:`list of additional configurations <../configurations>`
7272
to see if your case needs any of them.
7373

74+
Enabling GPU device for inference
75+
+++++++++++++++++++++++++++++++++
76+
77+
To use a GPU device for OpenVINO inference on Linux, you must install OpenCL ICD:
78+
79+
.. code-block:: sh
80+
81+
conda install ocl-icd-system
82+
83+
This step is not required on Windows, as Intel® Graphics Compute Runtime for
84+
OpenCL™ Driver is included with the Intel® Graphics Driver package.
85+
86+
Compiling with OpenVINO Runtime from Conda-Forge on Linux
87+
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
88+
89+
When linking OpenVINO libraries from Conda on Linux, ensure that you have the necessary Conda compilers installed and Conda standard libraries are used.
90+
To do so, run the following command in your Conda environment:
91+
92+
.. code-block:: sh
93+
94+
conda install cmake c-compiler cxx-compiler make
95+
conda env config vars set LD_LIBRARY_PATH=$CONDA_PREFIX/lib:$LD_LIBRARY_PATH
96+
97+
It is crucial to reactivate your Conda environment after installing the compilers.
98+
This step ensures that all the environment variables are set correctly for successful linkage.
99+
100+
To reactivate your Conda environment, execute the following command:
101+
102+
.. code-block:: sh
103+
104+
conda activate py310
105+
106+
Once you have reactivated your Conda environment, make sure that all the necessary environment
107+
variables are properly set and proceed with linking the OpenVINO libraries.
108+
74109
Installing specific components of OpenVINO from Conda Forge
75110
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
76111

@@ -112,43 +147,6 @@ For multiple components, use:
112147
113148
conda install conda-forge::libopenvino-intel-cpu-plugin conda-forge::libopenvino-arm-cpu-plugin conda-forge::libopenvino-intel-npu-plugin conda-forge::libopenvino-intel-gpu-plugin
114149
115-
116-
Compiling with OpenVINO Runtime from Conda-Forge on Linux
117-
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
118-
119-
When linking OpenVINO libraries from Conda on Linux, ensure that you have the necessary Conda compilers installed and Conda standard libraries are used.
120-
To do so, run the following command in your Conda environment:
121-
122-
.. code-block:: sh
123-
124-
conda install cmake c-compiler cxx-compiler make
125-
conda env config vars set LD_LIBRARY_PATH=$CONDA_PREFIX/lib:$LD_LIBRARY_PATH
126-
127-
It is crucial to reactivate your Conda environment after installing the compilers.
128-
This step ensures that all the environment variables are set correctly for successful linkage.
129-
130-
To reactivate your Conda environment, execute the following command:
131-
132-
.. code-block:: sh
133-
134-
conda activate py310
135-
136-
Once you have reactivated your Conda environment, make sure that all the necessary environment
137-
variables are properly set and proceed with linking the OpenVINO libraries.
138-
139-
Enabling GPU device for inference
140-
+++++++++++++++++++++++++++++++++
141-
142-
To use a GPU device for OpenVINO inference on Linux, you must install OpenCL ICD:
143-
144-
.. code-block:: sh
145-
146-
conda install ocl-icd-system
147-
148-
This step is not required on Windows, as Intel® Graphics Compute Runtime for
149-
OpenCL™ Driver is included with the Intel® Graphics Driver package.
150-
151-
152150
Uninstalling OpenVINO™ Runtime
153151
###########################################################
154152

0 commit comments

Comments
 (0)