-
Notifications
You must be signed in to change notification settings - Fork 553
[anaconda] - feature installation support for arm64/ aarch64. #1342
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
AlvaroRausell
merged 17 commits into
devcontainers:main
from
Kaniska244:anaconda_issue_arm64_support
Aug 12, 2025
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
3e28686
anaconda feature installation support for arm64/ aarch64.
bc374b9
Merge branch 'main' into anaconda_issue_arm64_support
Kaniska244 6e25799
Merge branch 'main' into anaconda_issue_arm64_support
Kaniska244 48ef5f6
Adding support for RHEL based linux distributions.
Kaniska244 ba0e7ce
Correction in the CONDA directory permission
Kaniska244 c07fcad
Update src/anaconda/install.sh, removing whitespaces
Kaniska244 cc2235d
Update src/anaconda/install.sh, removing whitespaces
Kaniska244 e124154
Update src/anaconda/install.sh
Kaniska244 9394cd2
Update src/anaconda/install.sh, removing whitespaces as suggested by …
Kaniska244 d39d8e7
Update src/anaconda/install.sh, removing whitespaces
Kaniska244 6c02d95
Update test/anaconda/scenarios.json, removing whitespaces
Kaniska244 129f4e8
Apply suggestions from code review
Kaniska244 2ab3123
Apply suggestions from code review
Kaniska244 a3f33db
Correcting incorrect code review suggestion by Copilot
Kaniska244 7ac0bb4
Corrections based on review comments.
Kaniska244 7264d4c
Further corrections based on review comments.
Kaniska244 6605e80
Merge branch 'main' into anaconda_issue_arm64_support
AlvaroRausell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| #!/bin/bash | ||
|
|
||
| set -e | ||
|
|
||
| # Optional: Import test library | ||
| source dev-container-features-test-lib | ||
|
|
||
| # Definition specific tests | ||
| check "conda" conda --version | ||
| check "python" python --version | ||
| check "pylint" pylint --version | ||
| check "flake8" flake8 --version | ||
| check "autopep8" autopep8 --version | ||
| check "yapf" yapf --version | ||
| check "pydocstyle" pydocstyle --version | ||
| check "pycodestyle" pycodestyle --version | ||
| check "if conda-notice.txt exists" cat /usr/local/etc/vscode-dev-containers/conda-notice.txt | ||
|
|
||
| check "certifi" pip show certifi | grep Version | ||
| check "cryptography" pip show cryptography | grep Version | ||
| check "setuptools" pip show setuptools | grep Version | ||
| check "tornado" pip show tornado | grep Version | ||
|
|
||
| check "conda-update-conda" bash -c "conda update -y conda" | ||
| check "conda-install-tensorflow" bash -c "conda create --name test-env -c conda-forge --yes tensorflow" | ||
| check "conda-install-pytorch" bash -c "conda create --name test-env -c conda-forge --yes pytorch" | ||
|
|
||
| # Report result | ||
| reportResults | ||
|
|
||
|
|
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| #!/bin/bash | ||
|
|
||
| set -e | ||
|
|
||
| # Optional: Import test library | ||
| source dev-container-features-test-lib | ||
|
|
||
| # Definition specific tests | ||
| check "conda" conda --version | ||
| check "python" python --version | ||
| check "pylint" pylint --version | ||
| check "flake8" flake8 --version | ||
| check "autopep8" autopep8 --version | ||
| check "yapf" yapf --version | ||
| check "pydocstyle" pydocstyle --version | ||
| check "pycodestyle" pycodestyle --version | ||
| check "if conda-notice.txt exists" cat /usr/local/etc/vscode-dev-containers/conda-notice.txt | ||
|
|
||
| check "certifi" pip show certifi | grep Version | ||
| check "cryptography" pip show cryptography | grep Version | ||
| check "setuptools" pip show setuptools | grep Version | ||
| check "tornado" pip show tornado | grep Version | ||
|
|
||
| check "conda-update-conda" bash -c "conda update -y conda" | ||
| check "conda-install-tensorflow" bash -c "conda create --name test-env -c conda-forge --yes tensorflow" | ||
| check "conda-install-pytorch" bash -c "conda create --name test-env -c conda-forge --yes pytorch" | ||
|
|
||
| # Report result | ||
| reportResults | ||
|
|
||
|
|
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| #!/bin/bash | ||
|
|
||
| set -e | ||
|
|
||
| # Optional: Import test library | ||
| source dev-container-features-test-lib | ||
|
|
||
| # Definition specific tests | ||
| check "conda" conda --version | ||
| check "python" python --version | ||
| check "pylint" pylint --version | ||
| check "flake8" flake8 --version | ||
| check "autopep8" autopep8 --version | ||
| check "yapf" yapf --version | ||
| check "pydocstyle" pydocstyle --version | ||
| check "pycodestyle" pycodestyle --version | ||
| check "if conda-notice.txt exists" cat /usr/local/etc/vscode-dev-containers/conda-notice.txt | ||
|
|
||
| check "certifi" pip show certifi | grep Version | ||
| check "cryptography" pip show cryptography | grep Version | ||
| check "setuptools" pip show setuptools | grep Version | ||
| check "tornado" pip show tornado | grep Version | ||
|
|
||
| check "conda-update-conda" bash -c "conda update -y conda" | ||
| check "conda-install-tensorflow" bash -c "conda create --name test-env -c conda-forge --yes tensorflow" | ||
| check "conda-install-pytorch" bash -c "conda create --name test-env -c conda-forge --yes pytorch" | ||
|
|
||
| # Report result | ||
| reportResults | ||
|
|
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| #!/bin/bash | ||
|
|
||
| set -e | ||
|
|
||
| # Optional: Import test library | ||
| source dev-container-features-test-lib | ||
|
|
||
| # Definition specific tests | ||
| check "conda" conda --version | ||
| check "python" python --version | ||
| check "pylint" pylint --version | ||
| check "flake8" flake8 --version | ||
| check "autopep8" autopep8 --version | ||
| check "yapf" yapf --version | ||
| check "pydocstyle" pydocstyle --version | ||
| check "pycodestyle" pycodestyle --version | ||
| check "if conda-notice.txt exists" cat /usr/local/etc/vscode-dev-containers/conda-notice.txt | ||
|
|
||
| check "certifi" pip show certifi | grep Version | ||
| check "cryptography" pip show cryptography | grep Version | ||
| check "setuptools" pip show setuptools | grep Version | ||
| check "tornado" pip show tornado | grep Version | ||
|
|
||
| check "conda-update-conda" bash -c "conda update -y conda" | ||
| check "conda-install-tensorflow" bash -c "conda create --name test-env -c conda-forge --yes tensorflow" | ||
| check "conda-install-pytorch" bash -c "conda create --name test-env -c conda-forge --yes pytorch" | ||
|
|
||
| # Report result | ||
| reportResults | ||
|
|
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.