Skip to content

Commit f97f204

Browse files
Updated README.md
1 parent dc549b2 commit f97f204

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -169,17 +169,19 @@ The Python API can be installed from the Python Package Index by executing the f
169169
pip install getml
170170
```
171171

172-
The getML engine comes with the Python API and is installed automatically. However, if you want to install it separately, please execute the following commands:
172+
The getML engine comes with the Python API and is installed automatically. However, if you want to install it separately, please execute the following commands,
173+
replacing `ARCH` with either `x64` or `arm64`, depending on your architecture. If you are unsure, `x64` is probably the right choice. You can also use
174+
`uname -m` to figure out the architecture. If it says something like `aarch64` or `arm64`, you need to use `arm64`, otherwise go with `x64`.
173175

174176
```bash
175177
# Downloads the tar file of the engine
176-
wget https://static.getml.com/download/1.3.1/getml-1.3.1-community-edition-linux.tar.gz
178+
wget https://static.getml.com/download/1.3.1/getml-1.3.1-ARCH-community-edition-linux.tar.gz
177179

178180
# Extracts the tar file
179-
tar -xf getml-1.3.1-community-edition-linux.tar.gz
181+
tar -xf getml-1.3.1-ARCH-community-edition-linux.tar.gz
180182

181183
# Changes directory
182-
cd getml-1.3.1-community-edition-linux
184+
cd getml-1.3.1-ARCH-community-edition-linux
183185

184186
# Installs the engine
185187
./getML install
@@ -266,11 +268,11 @@ can launch Docker without root rights:
266268
267269
https://docs.docker.com/engine/install/linux-postinstall/
268270
269-
Then, do the following:
271+
Then, do the following, again replacing `ARCH` with either `x64` or `arm64`:
270272
271273
```bash
272274
# Go to the linux folder inside the repository
273-
cd linux
275+
cd linux-ARCH
274276
275277
# Set up the Docker container (you only have to do this once)
276278
./build.sh init_docker

0 commit comments

Comments
 (0)