Spaces:
Sleeping
Sleeping
Commit
·
96fda9e
1
Parent(s):
7a8b3ff
fix issue with installing egl_probe
Browse files- Dockerfile +3 -0
- requirements.txt +1 -1
Dockerfile
CHANGED
@@ -22,6 +22,9 @@ RUN pip install --no-cache-dir --upgrade pip
|
|
22 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
23 |
COPY --chown=user . $HOME/app
|
24 |
|
|
|
|
|
|
|
25 |
# Install requirements.txt
|
26 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
27 |
|
|
|
22 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
23 |
COPY --chown=user . $HOME/app
|
24 |
|
25 |
+
# https://github.com/huggingface/lerobot/issues/105
|
26 |
+
RUN pip install --no-cache-dir --upgrade cmake
|
27 |
+
|
28 |
# Install requirements.txt
|
29 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
30 |
|
requirements.txt
CHANGED
@@ -6,4 +6,4 @@ pillow
|
|
6 |
rerun-sdk>=0.15.0,<0.16.0
|
7 |
tqdm
|
8 |
webdataset
|
9 |
-
git+https://github.com/huggingface/lerobot@7bb5b15f4c0393ba16b73f6482611892301401d7#egg=lerobot
|
|
|
6 |
rerun-sdk>=0.15.0,<0.16.0
|
7 |
tqdm
|
8 |
webdataset
|
9 |
+
git+https://github.com/huggingface/lerobot@7bb5b15f4c0393ba16b73f6482611892301401d7#egg=lerobot
|