This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new 7e36a1ed8b [DOC] Fix PYTHONPATH in "Install from Source" (#18770)
7e36a1ed8b is described below
commit 7e36a1ed8b6ed95f8fbf7c9cda7a9b9f8d806445
Author: Ruslan Baratov <[email protected]>
AuthorDate: Tue Feb 17 00:15:54 2026 +0800
[DOC] Fix PYTHONPATH in "Install from Source" (#18770)
Since 'tvm-ffi' package is installed by 'pip install' in a separate
step, there is no need to add '$TVM_HOME/ffi/python' to PYTHONPATH
---
docs/install/from_source.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/install/from_source.rst b/docs/install/from_source.rst
index 9dd310e43b..8375286f58 100644
--- a/docs/install/from_source.rst
+++ b/docs/install/from_source.rst
@@ -145,7 +145,7 @@ Leaving the build environment ``tvm-build-venv``, there are
two ways to install
.. code-block:: bash
export TVM_HOME=/path-to-tvm
- export PYTHONPATH=$TVM_HOME/python:$TVM_HOME/ffi/python:$PYTHONPATH
+ export PYTHONPATH=$TVM_HOME/python:$PYTHONPATH
- Install via pip local project