-
Notifications
You must be signed in to change notification settings - Fork 708
Description
Search before asking
- I have searched the jetson-containers issues and found no similar feature requests.
jetson-containers Component
Build
Bug
First off, thank you for your work on this very useful project. I'm writing to report an issue I've encountered while trying to build the tvm
container.
Problem Description
I am trying to build the tvm
container, but the build fails at the initial pip install
step.
I have seen the warning on the repository's main page regarding the pypi.jetson-ai-lab.io
downtime. I have followed the instructions and modified a .env
file in the root of the repository add the following content:
INDEX_HOST=jetson-ai-lab.io
Despite this change, the build process still fails. The error log shows that pip
is attempting to install apache-tvm==0.22
, but this specific version cannot be found on the server.
Steps to Reproduce
- Clone the repository:
git clone --recursive https://github.com/dusty-nv/jetson-containers
bash jetson-containers/install.sh
cd jetson-containers
- Modify a .env file with
INDEX_HOST=jetson-ai-lab.io in it.
- Attempt to build the
tvm
package:jetson-containers build tvm
Observed Behavior / Error Log
Even with the .env
file configured, the build fails with the same error, indicating that version 0.22
is not available on the specified index.
+ pip3 install apache-tvm==0.22
Using pip 25.2 from /usr/local/lib/python3.10/dist-packages/pip (python 3.10)
Looking in indexes: https://pypi.jetson-ai-lab.io/jp6/cu126
ERROR: Could not find a version that satisfies the requirement apache-tvm==0.22 (from versions: 0.11.1, 0.12.0, 0.13.dev248, 0.13.dev276)
ERROR: No matching distribution found for apache-tvm==0.22
+ echo 'failed to install TVM 0.22'
failed to install TVM 0.22
The command '/bin/sh -c /tmp/tvm/install.sh || /tmp/tvm/build.sh' returned a non-zero code: 1
It appears that even when following the workaround for the server downtime, the required package version (0.22) is not available, breaking the default build process for tvm and its dependent containers.
Thank you for your assistance.
Environment
-
Jetson Model: Jetson Orin nano Supser
-
JetPack Version: JetPack 6.2.1 (L4T R36.4.4)
-
jetson-containers Commit Hash: a8fb1a8
Additional
No response
Are you willing to submit a PR?
- Yes I'd like to help by submitting a PR!