Skip to content

Commit

Permalink
Removed ,s in conda install which throw an error
Browse files Browse the repository at this point in the history
  • Loading branch information
SurajDonthi authored and sglvladi committed Jul 8, 2020
1 parent 086af96 commit 7c446b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -329,13 +329,13 @@ The packages can be installed using ``conda`` by running:

.. code-block:: posh
conda install <package_name>(=<version>), <package_name>(=<version>), ..., <package_name>(=<version>)
conda install <package_name>(=<version>) <package_name>(=<version>) ... <package_name>(=<version>)
where ``<package_name>`` can be replaced with the name of the package, and optionally the package version can be specified by adding the optional specifier ``=<version>`` after ``<package_name>``. For example, to simply install all packages at their latest versions you can run:

.. code-block:: posh
conda install pillow, lxml, jupyter, matplotlib, opencv, cython
conda install pillow lxml jupyter matplotlib opencv cython
Alternatively, if you don't want to use Anaconda you can install the packages using ``pip``:

Expand Down

0 comments on commit 7c446b4

Please sign in to comment.