-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOC: mention conda-forge ray packages and x86_64 support #30237
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -3,13 +3,16 @@ | |||||||||
Installing Ray | ||||||||||
============== | ||||||||||
|
||||||||||
Ray currently supports Linux, MacOS and Windows. | ||||||||||
Ray currently officially supports x86_64 hardware. | ||||||||||
Ray on Windows is currently in beta. | ||||||||||
|
||||||||||
Official Releases | ||||||||||
----------------- | ||||||||||
|
||||||||||
You can install the latest official version of Ray as follows. | ||||||||||
From Wheels | ||||||||||
~~~~~~~~~~~ | ||||||||||
You can install the latest official version of Ray from PyPI on linux, windows | ||||||||||
and macos as follows: | ||||||||||
|
||||||||||
.. code-block:: bash | ||||||||||
|
||||||||||
|
@@ -28,6 +31,32 @@ To install Ray libraries: | |||||||||
pip install -U "ray[rllib]" # installs Ray + dependencies for Ray RLlib | ||||||||||
pip install -U "ray[serve]" # installs Ray + dependencies for Ray Serve | ||||||||||
|
||||||||||
From conda-forge | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We already have a section down below called There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oy, I missed that, sorry. I will redo this to improve that documentation since it is not really Anaconda but the conda-forge open source channel that provides ray. Anaconda provides the hosting, but people need to use the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. sg! |
||||||||||
~~~~~~~~~~~~~~~~ | ||||||||||
Ray can also be installed as a conda package on linux and windows | ||||||||||
|
||||||||||
.. code-block:: bash | ||||||||||
|
||||||||||
conda create -c conda-forge python=3.9 -n ray_dev | ||||||||||
conda activate ray_dev | ||||||||||
|
||||||||||
# Install Ray with support for the dashboard + cluster launcher | ||||||||||
conda install -c condaforge "ray[default]" | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Conda doesn't support the |
||||||||||
|
||||||||||
# Install Ray with minimal dependencies | ||||||||||
# conda install -c conda-forge ray | ||||||||||
|
||||||||||
To install Ray libraries: | ||||||||||
|
||||||||||
.. code-block:: bash | ||||||||||
|
||||||||||
conda install -c conda-forge "ray[air]" # installs Ray + dependencies for Ray AI Runtime | ||||||||||
conda install -c conda-forge "ray[tune]" # installs Ray + dependencies for Ray Tune | ||||||||||
conda install -c conda-forge "ray[rllib]" # installs Ray + dependencies for Ray RLlib | ||||||||||
conda install -c conda-forge "ray[serve]" # installs Ray + dependencies for Ray Serve | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks, fixed |
||||||||||
|
||||||||||
|
||||||||||
|
||||||||||
.. _install-nightlies: | ||||||||||
|
||||||||||
Daily Releases (Nightlies) | ||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We also supports mac M1 in pypi packages.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1