Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/start/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ After pulling the desired Docker image and installing desired inference and trai
.. code:: bash

# install the nightly version (recommended)
git clone https://github.com/volcengine/verl && cd verl
git clone https://github.com/verl-project/verl && cd verl
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

While this change correctly updates the repository URL, the fix is incomplete. There are several other occurrences of the old URL https://github.com/volcengine/verl that still need to be updated to https://github.com/verl-project/verl to ensure consistency and prevent confusion.

Please update the URL in the following locations as well:

In docs/start/install.rst:

  • Line 57
  • Line 58
  • Line 64
  • Line 65
  • Line 107
  • Line 211
  • Line 239

In docker/Dockerfile.stable.vllm:

  • Line 102

In docker/Dockerfile.stable.sglang:

  • Line 39

A global search-and-replace for volcengine/verl with verl-project/verl across the repository would be the best approach to ensure all references are updated.

pip3 install --no-deps -e .

[Optional] If you hope to switch between different frameworks, you can install verl with the following command:

.. code:: bash

# install the nightly version (recommended)
git clone https://github.com/volcengine/verl && cd verl
git clone https://github.com/verl-project/verl && cd verl
pip3 install -e .[vllm]
pip3 install -e .[sglang]

Expand Down