[README] update links to snapshot packages (#3073)

Source:
https://github.com/llvm/torch-mlir/issues/3068#issuecomment-2024109412
Verified commands locally on Ubuntu 22.04 with pyenv virtualenv created
for python 3.11.
pull/3093/head
miheer vaidya 2024-04-01 15:16:02 -06:00 committed by GitHub
parent 1cdae6bc68
commit fe2fb9d9f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -52,9 +52,9 @@ Meeting links can be found [here](https://discourse.llvm.org/t/new-community-mee
## Install torch-mlir snapshot ## Install torch-mlir snapshot
At the time of writing, we release pre-built snapshots of torch-mlir for Python 3.11. At the time of writing, we release [pre-built snapshots of torch-mlir](https://github.com/llvm/torch-mlir-release) for Python 3.11 and Python 3.10.
If you have Python 3.11, the following commands initialize a virtual environment. If you have supported Python version, the following commands initialize a virtual environment.
```shell ```shell
python3.11 -m venv mlir_venv python3.11 -m venv mlir_venv
source mlir_venv/bin/activate source mlir_venv/bin/activate
@ -70,8 +70,8 @@ python -m pip install --upgrade pip
Then, we can install torch-mlir with the corresponding torch and torchvision nightlies. Then, we can install torch-mlir with the corresponding torch and torchvision nightlies.
``` ```
pip install --pre torch-mlir torchvision \ pip install --pre torch-mlir torchvision \
-f https://llvm.github.io/torch-mlir/package-index/ \
--extra-index-url https://download.pytorch.org/whl/nightly/cpu --extra-index-url https://download.pytorch.org/whl/nightly/cpu
pip install torch-mlir -f https://github.com/llvm/torch-mlir-release/releases/expanded_assets/dev-wheels
``` ```
## Demos ## Demos