You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker run --gpus all -it --name libai -v /home/user/:/workspace/ --ipc host --net host libai:v0 /bin/bash
9
+
```
10
+
11
+
You can also use the pre-built LiBai containers (the latest compatible version at time of publication can be pulled with `docker pull l1aoxingyu/libai:v0`).
12
+
13
+
> NOTE: If your nvidia-driver cannot support `cuda111`, you can build the base image from `cuda102`.
14
+
15
+
## Install new dependencies
16
+
17
+
Add the following to `Dockerfile` to make persistent changes.
18
+
19
+
```shell
20
+
RUN sudo apt-get update && sudo apt-get install -y vim
21
+
```
22
+
23
+
Or run them in the container to make temporary changes.
0 commit comments