Update README.md
Browse files
README.md
CHANGED
@@ -38,9 +38,14 @@ container and store the quantization results
|
|
38 |
3. within the <u>Docker Desktop</u>, search for and download a `basic-python` image - just use one of
|
39 |
the most popular ones
|
40 |
4. from a <u>terminal session on your host computer</u> (i.e., not a Docker container!), start a new container
|
41 |
-
for the downloaded image which mounts the folder we created before:<br
|
|
|
|
|
42 |
-v ./llama.cpp_in_Docker:/llama.cpp \
|
43 |
-
-t basic-python /bin/bash
|
|
|
|
|
|
|
44 |
5. back in the <u>Docker Desktop</u>, open the "Terminal" tab of the started container and enter the
|
45 |
following commands:<br>
|
46 |
```
|
|
|
38 |
3. within the <u>Docker Desktop</u>, search for and download a `basic-python` image - just use one of
|
39 |
the most popular ones
|
40 |
4. from a <u>terminal session on your host computer</u> (i.e., not a Docker container!), start a new container
|
41 |
+
for the downloaded image which mounts the folder we created before:<br>
|
42 |
+
```
|
43 |
+
docker run --rm \
|
44 |
-v ./llama.cpp_in_Docker:/llama.cpp \
|
45 |
+
-t basic-python /bin/bash
|
46 |
+
```
|
47 |
+
|
48 |
+
<br>(you may have to adjust the path to your local folder)
|
49 |
5. back in the <u>Docker Desktop</u>, open the "Terminal" tab of the started container and enter the
|
50 |
following commands:<br>
|
51 |
```
|