File tree 3 files changed +4
-1
lines changed
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ ARG DEBIAN_FRONTEND=noninteractive
5
5
# git is needed for flash-attention
6
6
# curl is needed to download get-pip.py
7
7
# software-properties-common is needed for add-apt-repository
8
+ # python3.10-dev is needed for triton as it includes the Python.h header file
8
9
# We get python 3.10 from the deadsnakes PPA to have the latest version
9
10
# We install pip from the get-pip.py script to have the latest version
10
11
RUN apt-get update \
@@ -17,6 +18,7 @@ RUN apt-get update \
17
18
&& apt-get update \
18
19
&& apt install -y \
19
20
python3.10 \
21
+ python3.10-dev \
20
22
python3.10-distutils \
21
23
&& rm -rf /var/lib/apt/lists/*
22
24
Original file line number Diff line number Diff line change @@ -173,6 +173,7 @@ H2O LLM Studio images are stored in the h2oai dockerhub container repository.
173
173
174
174
``` bash
175
175
mkdir -p ` pwd` /llmstudio_mnt
176
+ chmod 777 ` pwd` /llmstudio_mnt
176
177
177
178
# make sure to pull latest image if you still have a prior version cached
178
179
docker pull h2oairelease/h2oai-llmstudio-app:latest
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " h2o-llmstudio"
3
- version = " 1.15.0-dev "
3
+ version = " 1.14.1 "
4
4
readme = " README.md"
5
5
license = {file = " LICENSE" }
6
6
You can’t perform that action at this time.
0 commit comments