docs(orion): add script compatibility note for Python version check#1582
Open
tangzz-radxa wants to merge 1 commit intoradxa-docs:mainfrom
Open
docs(orion): add script compatibility note for Python version check#1582tangzz-radxa wants to merge 1 commit intoradxa-docs:mainfrom
tangzz-radxa wants to merge 1 commit intoradxa-docs:mainfrom
Conversation
Fixes radxa-docs#1534 Add a note explaining that the env_setup.sh script checks for Python 3.10 and may fail with newer Python versions. Provide manual installation instructions as a workaround.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a script compatibility note to the Orion O6/O6N AI environment setup page to address Python version check issues reported in #1534.
Why
Issue #1534 reports that the
env_setup.shscript fails when users have Python 3.13.12 installed because the script checks for Python 3.10.x. The SDK is only compatible with Python 3.10, but the error message could be confusing for users with newer Python versions.This PR adds a note explaining:
env_setup.shscript checks for Python 3.10conda activate noepip install -r requirements.txt CixBuilder-6.1.3407.2-cp310-none-linux_x86_64.whlVerification
bash env_setup.shcommand in the "Use the script to set up the development environment" section:::note[]admonition format consistent with other notes on the pageFixes #1534