Hi, is it possible to install taichi on raspberry pi 5 device. Raspbian 64bit OS installed on the device and all the packages written in requirements.txt was already installed. I did not find any information about this on the internet, python package index don't include a wheel for linux/arm64. #11882
This file contains 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
name: Slash Command Dispatch | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
check_comments: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Slash Command Dispatch - Triage | |
uses: peter-evans/slash-command-dispatch@v3 | |
with: | |
token: ${{ secrets.GARDENER_PAT }} | |
reaction-token: ${{ secrets.GARDENER_PAT }} | |
repository: taichi-dev/ci_workflows | |
issue-type: pull-request | |
permission: triage | |
commands: | | |
rebase | |
rerun | |
rerun-failed | |
- name: Slash Command Dispatch - Repo - Triage | |
uses: peter-evans/slash-command-dispatch@v3 | |
with: | |
token: ${{ secrets.GARDENER_PAT }} | |
reaction-token: ${{ secrets.GARDENER_PAT }} | |
issue-type: pull-request | |
permission: triage | |
commands: | | |
benchmark | |
- name: Slash Command Dispatch - Repo - Write | |
uses: peter-evans/slash-command-dispatch@v3 | |
with: | |
token: ${{ secrets.GARDENER_PAT }} | |
reaction-token: ${{ secrets.GARDENER_PAT }} | |
issue-type: pull-request | |
permission: write | |
commands: | | |
land |