You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
+
74
109
Installing specific components of OpenVINO from Conda Forge
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.
0 commit comments