hrtan99 commented on issue #18388: URL: https://github.com/apache/tvm/issues/18388#issuecomment-3570595059
I'm new to tvm and I guess I figured out what is going on here. The document said: > Apache TVM relies on the tvm-ffi package to support its python bindings. Therefore, after we finish the build, we need to install the tvm-ffi package. > ``` > cd 3rdparty/tvm-ffi; pip install .; cd .. > ``` Actually, the path of `3rdparty/tvm-ffi;` is relative to the **tvm project path** instead of the `build` directory, which is confusing in this context. Therefore, one shall execute `cd /path_to_tvm_project/3rdparty/tvm-ffi; pip install .; cd ..`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
