Recommend to set LD_LIBRARY_PATH to point to conda libraries (#23897)
### Details: - Recommend to set LD_LIBRARY_PATH to point to conda libraries ### Tickets: - CVS-134534 --------- Co-authored-by: Yaroslav Tarkan <yaroslav.tarkan@intel.com>
This commit is contained in:
parent
48d25368a6
commit
edc30e6583
|
|
@ -74,12 +74,13 @@ to see if your case needs any of them.
|
||||||
Compiling with OpenVINO Runtime from Conda-Forge on Linux
|
Compiling with OpenVINO Runtime from Conda-Forge on Linux
|
||||||
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
|
||||||
When linking OpenVINO libraries from Conda on Linux, ensure that you have the necessary Conda compilers installed.
|
When linking OpenVINO libraries from Conda on Linux, ensure that you have the necessary Conda compilers installed and Conda standard libraries are used.
|
||||||
To do so, run the following command in your Conda environment:
|
To do so, run the following command in your Conda environment:
|
||||||
|
|
||||||
.. code-block:: sh
|
.. code-block:: sh
|
||||||
|
|
||||||
conda install cmake c-compiler cxx-compiler make
|
conda install cmake c-compiler cxx-compiler make
|
||||||
|
conda env config vars set LD_LIBRARY_PATH=$CONDA_PREFIX/lib:$LD_LIBRARY_PATH
|
||||||
|
|
||||||
It is crucial to reactivate your Conda environment after installing the compilers.
|
It is crucial to reactivate your Conda environment after installing the compilers.
|
||||||
This step ensures that all the environment variables are set correctly for successful linkage.
|
This step ensures that all the environment variables are set correctly for successful linkage.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue