Skip to content
Merged
Changes from all commits
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
18 changes: 18 additions & 0 deletions docs/source/getting_started/tpu-installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,21 @@ Next, build vLLM from source. This will only take a few seconds:
.. code-block:: console

$ VLLM_TARGET_DEVICE="tpu" python setup.py develop


.. tip::

If you encounter the following error:

.. code-block:: console

from torch._C import * # noqa: F403
ImportError: libopenblas.so.0: cannot open shared object file: No such file or directory


You can install OpenBLAS with the following command:

.. code-block:: console

$ sudo apt-get install libopenblas-base libopenmpi-dev libomp-dev