Skip to content

Commit 2f274a5

Browse files
julesvanriegithub-actions
and
github-actions
authored
Update for Windows on ARM (#323)
* Docker setup for Windows on ARM * Torch platform depended for x86_64 and aarch (arm) * setup guides generated --------- Co-authored-by: github-actions <[email protected]>
1 parent 6e66f6a commit 2f274a5

File tree

5 files changed

+66
-9
lines changed

5 files changed

+66
-9
lines changed

WINDOWS.es.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -1318,9 +1318,23 @@ _Si ya tienes Docker instalado en tu máquina, por favor actualízalo con la ver
13181318

13191319
### Instalación de Docker
13201320

1321-
Ve a [Docker para WSL2](https://docs.docker.com/docker-for-windows/wsl/).
1321+
Ve a [Install Docker Desktop on Windows](https://docs.docker.com/docker-for-windows/wsl/).
1322+
1323+
Descarga e instala el Docker Desktop.
1324+
1325+
Si tienes un procesador Intel o AMD, elige la primera opción que termina con "x86_64".
1326+
1327+
<details>
1328+
<summary markdown='span'>¿No estás seguro de qué procesador tienes?</summary>
1329+
1330+
Lo más probable es que necesites la versión `x86_64`, es decir, si tienes un procesador Intel o AMD.
1331+
1332+
Si no sabes qué procesador tiene tu máquina, ejecuta `arch` en tu terminal de Ubuntu. Verifica su salida:
1333+
- `x86_64`: elige la primera opción "x86_64"
1334+
- `aarch64`: elige la segunda opción "Arm"
1335+
1336+
</details>
13221337

1323-
Descarga e instala el backend de Docker Desktop WSL 2.
13241338

13251339
Cuando termines, inicia Docker.
13261340

WINDOWS.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -1376,9 +1376,23 @@ _if you already have Docker installed on your machine please update with the lat
13761376

13771377
### Install Docker
13781378

1379-
Go to [Docker for WSL2](https://docs.docker.com/docker-for-windows/wsl/).
1379+
Go to [Install Docker Desktop on Windows](https://docs.docker.com/docker-for-windows/wsl/).
1380+
1381+
Download and install Docker Desktop.
1382+
1383+
If you have an Intel or AMD processor, choose the first option ending with "x86_64".
1384+
1385+
<details>
1386+
<summary markdown='span'>Not sure which processor you have?</summary>
1387+
1388+
Most probably you'll need the `x86_64`version, that is if you have an Intel or AMD processor.
1389+
1390+
If you don't know which processor your machine has, run `arch` in your Ubuntu terminal. Check its output:
1391+
- `x86_64`: choose the first option "x86_64"
1392+
- `aarch64`: choose the second option "Arm"
1393+
1394+
</details>
13801395

1381-
Download and install the Docker Desktop WSL 2 backend.
13821396

13831397
Once done, start Docker.
13841398

_partials/es/win_docker.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,23 @@ _Si ya tienes Docker instalado en tu máquina, por favor actualízalo con la ver
66

77
### Instalación de Docker
88

9-
Ve a [Docker para WSL2](https://docs.docker.com/docker-for-windows/wsl/).
9+
Ve a [Install Docker Desktop on Windows](https://docs.docker.com/docker-for-windows/wsl/).
10+
11+
Descarga e instala el Docker Desktop.
12+
13+
Si tienes un procesador Intel o AMD, elige la primera opción que termina con "x86_64".
14+
15+
<details>
16+
<summary markdown='span'>¿No estás seguro de qué procesador tienes?</summary>
17+
18+
Lo más probable es que necesites la versión `x86_64`, es decir, si tienes un procesador Intel o AMD.
19+
20+
Si no sabes qué procesador tiene tu máquina, ejecuta `arch` en tu terminal de Ubuntu. Verifica su salida:
21+
- `x86_64`: elige la primera opción "x86_64"
22+
- `aarch64`: elige la segunda opción "Arm"
23+
24+
</details>
1025

11-
Descarga e instala el backend de Docker Desktop WSL 2.
1226

1327
Cuando termines, inicia Docker.
1428

_partials/win_docker.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,23 @@ _if you already have Docker installed on your machine please update with the lat
66

77
### Install Docker
88

9-
Go to [Docker for WSL2](https://docs.docker.com/docker-for-windows/wsl/).
9+
Go to [Install Docker Desktop on Windows](https://docs.docker.com/docker-for-windows/wsl/).
10+
11+
Download and install Docker Desktop.
12+
13+
If you have an Intel or AMD processor, choose the first option ending with "x86_64".
14+
15+
<details>
16+
<summary markdown='span'>Not sure which processor you have?</summary>
17+
18+
Most probably you'll need the `x86_64`version, that is if you have an Intel or AMD processor.
19+
20+
If you don't know which processor your machine has, run `arch` in your Ubuntu terminal. Check its output:
21+
- `x86_64`: choose the first option "x86_64"
22+
- `aarch64`: choose the second option "Arm"
23+
24+
</details>
1025

11-
Download and install the Docker Desktop WSL 2 backend.
1226

1327
Once done, start Docker.
1428

specs/releases/linux.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,8 @@ tokenizers==0.21.0
200200
toml==0.10.2
201201
tomlkit==0.13.2
202202
# torch==2.6.0+cpu
203-
https://download.pytorch.org/whl/cpu-cxx11-abi/torch-2.6.0%2Bcpu.cxx11.abi-cp312-cp312-linux_x86_64.whl
203+
https://download.pytorch.org/whl/cpu-cxx11-abi/torch-2.6.0%2Bcpu.cxx11.abi-cp312-cp312-linux_x86_64.whl ; platform_machine == "x86_64"
204+
https://download.pytorch.org/whl/cpu/torch-2.6.0%2Bcpu-cp312-cp312-manylinux_2_28_aarch64.whl; platform_machine == "aarch64"
204205
tornado==6.4.2
205206
tqdm==4.67.1
206207
traitlets==5.14.3

0 commit comments

Comments
 (0)