[DOCS] bring back conda guide 23.0 (#17031)

This commit is contained in:
Karol Blaszczak
2023-04-20 14:09:07 +02:00
committed by GitHub
parent 70e0eed075
commit dcfa1f6881
6 changed files with 137 additions and 32 deletions

View File

@@ -2,11 +2,25 @@
@sphinxdirective
With the OpenVINO™ 2022.3 release, you can install OpenVINO Runtime on macOS and Linux via `Homebrew <https://brew.sh/>`_. 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 <https://www.intel.com/content/www/us/en/developer/articles/release-notes/openvino-2022-3-lts-relnotes.html>`__ 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 <openvino_docs_install_guides_installing_openvino_pip>`
The current Homebrew package provides inference support for CPU only.
You can use `Homebrew <https://brew.sh/>`_ 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 <https://www.intel.com/content/www/us/en/developer/articles/release-notes/openvino-2022-3-lts-relnotes.html>`_
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 <https://software.intel.com/content/dam/develop/external/us/en/documents/intel-openvino-license-agreements.pdf>`_.
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 <openvino_docs_install_guides_installing_openvino_pip>` page for instructions on how to install OpenVINO Runtime for Python using PyPI.
.. note::

View File

@@ -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 <openvino_docs_install_guides_installing_openvino_pip>`
The current Anaconda package does not provide support for GPU inference.
.. tab:: System Requirements
| Full requirement listing is available in:
| `System Requirements Page <https://www.intel.com/content/www/us/en/developer/tools/openvino-toolkit/system-requirements.html>`__
.. 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 <https://ark.intel.com/>`__ 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 <https://www.anaconda.com/products/individual/>`__
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 <openvino_docs_get_started_get_started_demos>` 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 <openvino_docs_OV_UG_Samples_Overview>` page for other C++ example applications to get you started with OpenVINO, such as:
* `Basic object detection with the Hello Reshape SSD C++ sample <openvino_inference_engine_samples_hello_reshape_ssd_README.html>`__
* `Automatic speech recognition C++ sample <openvino_inference_engine_samples_speech_sample_README.html>`__
Additional Resources
###########################################################
* `OpenVINO Runtime Conda Forge <https://anaconda.org/conda-forge/openvino>`__
* :doc:`OpenVINO™ Toolkit Samples Overview <openvino_docs_OV_UG_Samples_Overview>`
* `OpenVINO Installation Selector Tool <https://www.intel.com/content/www/us/en/developer/tools/openvino-toolkit/download.html>`__
@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)

View File

@@ -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 <https://software.intel.com/en-us/articles/OpenVINO-RelNotes>` for more information on updates in the latest release.
See the `Release Notes <https://software.intel.com/en-us/articles/OpenVINO-RelNotes>`__ for more information on updates in the latest release.
.. tab:: System Requirements

View File

@@ -6,22 +6,24 @@
:maxdepth: 3
:hidden:
From Archive <openvino_docs_install_guides_installing_openvino_from_archive_linux>
From PyPI <openvino_docs_install_guides_installing_openvino_pip>
From APT <openvino_docs_install_guides_installing_openvino_apt>
From YUM <openvino_docs_install_guides_installing_openvino_yum>
Using HomeBrew <openvino_docs_install_guides_installing_openvino_brew>
Using Docker <openvino_docs_install_guides_installing_openvino_docker_linux>
Use Archive <openvino_docs_install_guides_installing_openvino_from_archive_linux>
Use PyPI <openvino_docs_install_guides_installing_openvino_pip>
Use APT <openvino_docs_install_guides_installing_openvino_apt>
Use YUM <openvino_docs_install_guides_installing_openvino_yum>
Use Conda Forge <openvino_docs_install_guides_installing_openvino_conda>
Use HomeBrew <openvino_docs_install_guides_installing_openvino_brew>
Use Docker <openvino_docs_install_guides_installing_openvino_docker_linux>
If you want to install OpenVINO™ Runtime on your Linux machine, these are your options:
* `Install OpenVINO Runtime from an Archive File <openvino_docs_install_guides_installing_openvino_from_archive_linux>`
* `Install OpenVINO from PyPI <openvino_docs_install_guides_installing_openvino_pip>`
* `Install OpenVINO Runtime from APT <openvino_docs_install_guides_installing_openvino_apt>`
* `Install OpenVINO Runtime from YUM <openvino_docs_install_guides_installing_openvino_yum>`
* `Install OpenVINO Runtime using HomeBrew <openvino_docs_install_guides_installing_openvino_brew>`
* `Install OpenVINO with Docker Using Docker <openvino_docs_install_guides_installing_openvino_docker_linux>`
* :doc:`Install OpenVINO Runtime using an Archive File <openvino_docs_install_guides_installing_openvino_from_archive_linux>`
* :doc:`Install OpenVINO using PyPI <openvino_docs_install_guides_installing_openvino_pip>`
* :doc:`Install OpenVINO Runtime using APT <openvino_docs_install_guides_installing_openvino_apt>`
* :doc:`Install OpenVINO Runtime using YUM <openvino_docs_install_guides_installing_openvino_yum>`
* :doc:`Install OpenVINO Runtime using Conda Forge <openvino_docs_install_guides_installing_openvino_conda>`
* :doc:`Install OpenVINO Runtime using HomeBrew <openvino_docs_install_guides_installing_openvino_brew>`
* :doc:`Install OpenVINO using Docker <openvino_docs_install_guides_installing_openvino_docker_linux>`
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>`__

View File

@@ -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 <openvino_docs_install_guides_installing_openvino_from_archive_macos>`
* :doc:`Install OpenVINO Runtime via HomeBrew <openvino_docs_install_guides_installing_openvino_brew>`
* :doc:`Install OpenVINO from PyPI <openvino_docs_install_guides_installing_openvino_pip>`
* :doc:`Install OpenVINO Runtime using an Archive File <openvino_docs_install_guides_installing_openvino_from_archive_macos>`
* :doc:`Install OpenVINO Runtime using HomeBrew <openvino_docs_install_guides_installing_openvino_brew>`
* :doc:`Install OpenVINO using PyPI <openvino_docs_install_guides_installing_openvino_pip>`
* :doc:`Install OpenVINO using Conda Forge <openvino_docs_install_guides_installing_openvino_conda>`
* `Build From Source <https://github.com/openvinotoolkit/openvino/blob/master/docs/dev/build.md>`__
The other installation methods are temporarily unavailable.

View File

@@ -6,16 +6,18 @@
:maxdepth: 3
:hidden:
From Archive <openvino_docs_install_guides_installing_openvino_from_archive_windows>
From PyPI <openvino_docs_install_guides_installing_openvino_pip>
Using Docker <openvino_docs_install_guides_installing_openvino_docker_windows>
Use Archive <openvino_docs_install_guides_installing_openvino_from_archive_windows>
Use PyPI <openvino_docs_install_guides_installing_openvino_pip>
Use Conda Forge <openvino_docs_install_guides_installing_openvino_conda>
Use Docker <openvino_docs_install_guides_installing_openvino_docker_windows>
If you want to install OpenVINO™ Runtime on Windows, you have the following options:
* :doc:`Install OpenVINO Runtime from an Archive File <openvino_docs_install_guides_installing_openvino_from_archive_windows>`
* :doc:`Install OpenVINO from PyPI <openvino_docs_install_guides_installing_openvino_pip>`
* :doc:`Install OpenVINO with Docker <openvino_docs_install_guides_installing_openvino_docker_windows>`
* :doc:`Install OpenVINO Runtime using PyPI <openvino_docs_install_guides_installing_openvino_pip>`
* :doc:`Install OpenVINO Runtime using Conda Forge <openvino_docs_install_guides_installing_openvino_conda>`
* :doc:`Install OpenVINO using Docker <openvino_docs_install_guides_installing_openvino_docker_windows>`
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>`__