Skip to content

Commit

Permalink
Merge pull request #8527 from msakai/remove-pre-from-chainerx-install…
Browse files Browse the repository at this point in the history
…ation-doc

Remove '--pre' from 'pip install' commands in ChainerX installation document
  • Loading branch information
asi1024 committed Jan 6, 2020
2 parents 9ff42fe + c1a5031 commit 1047677
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/source/chainerx/install/index.rst
Expand Up @@ -30,7 +30,7 @@ Environment variable Description
=========================== ========================================================================================================


Simply run ``pip install --pre chainer`` after configuring the above environment variables.
Simply run ``pip install chainer`` after configuring the above environment variables.
See :ref:`Examples <chainerx-install-cuda-support>` below.

.. _chainerx-install-cuda-support:
Expand Down Expand Up @@ -73,19 +73,19 @@ Install ChainerX without CUDA support:
$ export CHAINER_BUILD_CHAINERX=1
$ export MAKEFLAGS=-j8 # Using 8 parallel jobs.
$ pip install --pre chainer
$ pip install chainer
Install ChainerX depending on CuPy wheel distribution:

.. code-block:: console
$ pip install --pre cupy_cuda101 # Note: Choose the proper CUDA SDK version number.
$ pip install cupy_cuda101 # Note: Choose the proper CUDA SDK version number.
$ export CHAINER_BUILD_CHAINERX=1
$ export CHAINERX_BUILD_CUDA=1
$ export CHAINERX_CUDNN_USE_CUPY=1
$ export MAKEFLAGS=-j8 # Using 8 parallel jobs.
$ pip install --pre chainer
$ pip install chainer
Install ChainerX with CuPy built from source:
Expand All @@ -96,5 +96,5 @@ Install ChainerX with CuPy built from source:
$ export CHAINERX_BUILD_CUDA=1
$ export CUDNN_ROOT_DIR=path/to/cudnn
$ export MAKEFLAGS=-j8 # Using 8 parallel jobs.
$ pip install --pre cupy
$ pip install --pre chainer
$ pip install cupy
$ pip install chainer

0 comments on commit 1047677

Please sign in to comment.