diff --git a/docs/install_guides/installing-openvino-brew.md b/docs/install_guides/installing-openvino-brew.md index 1bbf9804201..a2518a369d3 100644 --- a/docs/install_guides/installing-openvino-brew.md +++ b/docs/install_guides/installing-openvino-brew.md @@ -2,11 +2,25 @@ @sphinxdirective -With the OpenVINO™ 2022.3 release, you can install OpenVINO Runtime on macOS and Linux via `Homebrew `_. OpenVINO™ Development Tools can be installed via PyPI only. See `Installing Additional Components <#optional-installing-additional-components>`__ for more information. +.. note:: -See the `Release Notes `__ for more information on updates in the latest release. + Installing OpenVINO Runtime from Homebrew is recommended for C++ developers. + If you work with Python, consider :doc:`installing OpenVINO from PyPI ` + + The current Homebrew package provides inference support for CPU only. + +You can use `Homebrew `_ to install OpenVINO Runtime on macOS and Linux. +OpenVINO™ Development Tools can be installed via PyPI only. +See `Installing Additional Components <#optional-installing-additional-components>`__ for more information. + +See the `Release Notes `_ +for more information on updates in the latest release. + +.. warning:: + + By downloading and using this container and the included software, you agree to the terms and conditions of the + `software license agreements `_. -Installing OpenVINO Runtime from Homebrew is recommended for C++ developers. If you are working with Python, the PyPI package has everything needed for Python development and deployment on CPU and GPUs. Visit the :doc:`Install OpenVINO from PyPI ` page for instructions on how to install OpenVINO Runtime for Python using PyPI. .. note:: diff --git a/docs/install_guides/installing-openvino-conda.md b/docs/install_guides/installing-openvino-conda.md index 57df35aac6b..0f9ba0cc283 100644 --- a/docs/install_guides/installing-openvino-conda.md +++ b/docs/install_guides/installing-openvino-conda.md @@ -1,10 +1,96 @@ -# Install OpenVINO™ Runtime from Anaconda Cloud +# Install OpenVINO™ Runtime from Conda Forge {#openvino_docs_install_guides_installing_openvino_conda} -* [Install OpenVINO Runtime from an Archive File](installing-openvino-from-archive-linux.md) -* [Install OpenVINO from PyPI](installing-openvino-pip.md) -* [Install OpenVINO with Docker](installing-openvino-docker-linux.md) -* [Build From Source](https://github.com/openvinotoolkit/openvino/blob/master/docs/dev/build.md) +@sphinxdirective -The other installation methods are temporarily unavailable. +.. note:: + + Installing OpenVINO Runtime from Conda Forge is recommended for C++ developers, as it provides only the C++ Runtime API. + If you work with Python, consider :doc:`installing OpenVINO from PyPI ` + + The current Anaconda package does not provide support for GPU inference. + +.. tab:: System Requirements + + | Full requirement listing is available in: + | `System Requirements Page `__ + +.. comment to publish in the future, when gpu support comes back: + + .. tab:: Processor Notes + + | Not all Intel CPUs include integrated graphics processors. + | See `Product Specifications `__ for information about your hardware. + +.. tab:: Software + + There are many ways to work with Conda. Before you proceed, learn more about it on the + `Anaconda distribution page `__ + + +Installing OpenVINO Runtime with Anaconda Package Manager +############################################################ + +1. Set up the Anaconda environment (Python 3.10 used as an example): + + .. code-block:: sh + + conda create --name py310 python=3.10 + + .. code-block:: sh + + conda activate py310 + +2. Update it to the latest version: + + .. code-block:: sh + + conda update --all + +3. Install the OpenVINO Runtime package: + + .. code-block:: sh + + conda install -c conda-forge openvino=2022.3.0 + + Congratulations! You have finished installing OpenVINO Runtime. + + +Uninstalling OpenVINO™ Runtime +########################################################### + +Once OpenVINO Runtime is installed via Conda, you can remove it using the following command, +with the proper OpenVINO version number: + +.. code-block:: sh + + conda remove openvino=2022.3.0 + + +What's Next? +############################################################ + +Now that you've installed OpenVINO Runtime, you are ready to run your own machine learning applications! +To learn more about how to integrate a model in OpenVINO applications, try out some tutorials and sample applications. + +Try the :doc:`C++ Quick Start Example ` for step-by-step instructions +on building and running a basic image classification C++ application. + +.. image:: https://user-images.githubusercontent.com/36741649/127170593-86976dc3-e5e4-40be-b0a6-206379cd7df5.jpg + :width: 400 + +Visit the :doc:`Samples ` page for other C++ example applications to get you started with OpenVINO, such as: + +* `Basic object detection with the Hello Reshape SSD C++ sample `__ +* `Automatic speech recognition C++ sample `__ + + +Additional Resources +########################################################### + +* `OpenVINO Runtime Conda Forge `__ +* :doc:`OpenVINO™ Toolkit Samples Overview ` +* `OpenVINO Installation Selector Tool `__ + + +@endsphinxdirective -For a full selection of distribution channels, see the [OpenVINO Installation Selector Tool](https://www.intel.com/content/www/us/en/developer/tools/openvino-toolkit/download.html) \ No newline at end of file diff --git a/docs/install_guides/installing-openvino-from-archive-linux.md b/docs/install_guides/installing-openvino-from-archive-linux.md index dcf62f2e9e7..69733c56c3b 100644 --- a/docs/install_guides/installing-openvino-from-archive-linux.md +++ b/docs/install_guides/installing-openvino-from-archive-linux.md @@ -14,7 +14,7 @@ page for instructions on how to install OpenVINO Runtime for Python using PyPI. Model Optimizer, Post-Training Optimization Tool, Model Downloader and other Open Model Zoo tools, Accuracy Checker, and Annotation Converter. -See the `Release Notes ` for more information on updates in the latest release. +See the `Release Notes `__ for more information on updates in the latest release. .. tab:: System Requirements diff --git a/docs/install_guides/installing-openvino-linux-header.md b/docs/install_guides/installing-openvino-linux-header.md index f45cbb2a501..e8e2a3b0c29 100644 --- a/docs/install_guides/installing-openvino-linux-header.md +++ b/docs/install_guides/installing-openvino-linux-header.md @@ -6,22 +6,24 @@ :maxdepth: 3 :hidden: - From Archive - From PyPI - From APT - From YUM - Using HomeBrew - Using Docker + Use Archive + Use PyPI + Use APT + Use YUM + Use Conda Forge + Use HomeBrew + Use Docker If you want to install OpenVINO™ Runtime on your Linux machine, these are your options: -* `Install OpenVINO Runtime from an Archive File ` -* `Install OpenVINO from PyPI ` -* `Install OpenVINO Runtime from APT ` -* `Install OpenVINO Runtime from YUM ` -* `Install OpenVINO Runtime using HomeBrew ` -* `Install OpenVINO with Docker Using Docker ` +* :doc:`Install OpenVINO Runtime using an Archive File ` +* :doc:`Install OpenVINO using PyPI ` +* :doc:`Install OpenVINO Runtime using APT ` +* :doc:`Install OpenVINO Runtime using YUM ` +* :doc:`Install OpenVINO Runtime using Conda Forge ` +* :doc:`Install OpenVINO Runtime using HomeBrew ` +* :doc:`Install OpenVINO using Docker ` For a full selection of distribution channels, see the `OpenVINO Installation Selector Tool `__ diff --git a/docs/install_guides/installing-openvino-macos.md b/docs/install_guides/installing-openvino-macos.md index 21c5053e082..3d9ed968e40 100644 --- a/docs/install_guides/installing-openvino-macos.md +++ b/docs/install_guides/installing-openvino-macos.md @@ -2,11 +2,12 @@ @sphinxdirective -Currently only the following ways are provided to install OpenVINO™: +Currently only the following ways are provided to install OpenVINO™ on macOS: -* :doc:`Install OpenVINO Runtime from an Archive File ` -* :doc:`Install OpenVINO Runtime via HomeBrew ` -* :doc:`Install OpenVINO from PyPI ` +* :doc:`Install OpenVINO Runtime using an Archive File ` +* :doc:`Install OpenVINO Runtime using HomeBrew ` +* :doc:`Install OpenVINO using PyPI ` +* :doc:`Install OpenVINO using Conda Forge ` * `Build From Source `__ The other installation methods are temporarily unavailable. diff --git a/docs/install_guides/installing-openvino-windows-header.md b/docs/install_guides/installing-openvino-windows-header.md index f5480a6a350..832b311b5fa 100644 --- a/docs/install_guides/installing-openvino-windows-header.md +++ b/docs/install_guides/installing-openvino-windows-header.md @@ -6,16 +6,18 @@ :maxdepth: 3 :hidden: - From Archive - From PyPI - Using Docker + Use Archive + Use PyPI + Use Conda Forge + Use Docker If you want to install OpenVINO™ Runtime on Windows, you have the following options: * :doc:`Install OpenVINO Runtime from an Archive File ` -* :doc:`Install OpenVINO from PyPI ` -* :doc:`Install OpenVINO with Docker ` +* :doc:`Install OpenVINO Runtime using PyPI ` +* :doc:`Install OpenVINO Runtime using Conda Forge ` +* :doc:`Install OpenVINO using Docker ` For a full selection of distribution channels, see the `OpenVINO Installation Selector Tool `__