Open DieuMerciKIMPOLO opened 1 year ago
What platform are you running docker on? If you are on mac silicon, then that will do it. I'm doing battle with that currently. If that is the case you can specify to to use a linux/amd64
image and then vtk will install.
Thanks for suggestion a solution :pray: To increase the visibility, I suggest you follow-up at https://github.com/Kitware/trame/discussions
In the next few days, I will update the README of this project indicating it is retired.
Indeed, vtk wheels are now officially built and distributed directly from https://gitlab.kitware.com/vtk/vtk/
I'm installing Trame and VTK on a docker image, but I get the following error:
`------ => ERROR [5/5] RUN pip install -r /tmp/requirements.txt && rm -rf /tmp && adduser --disabled-password 4.1s
the content of my requirements.txt file is:
trame>=2.0.0 vtk>=9.1.0
the content of my Dockerfile is: ` FROM python:3.9.0-alpine3.12 ENV PYTHONUNBUFFERED 1
COPY ./requirements.txt /tmp/requirements.txt COPY ./app /app WORKDIR /app EXPOSE 8000
RUN pip install -r /tmp/requirements.txt && \ rm -rf /tmp && \ adduser \ --disabled-password \ --no-create-home \ trame-user ENV PATH="/py/bin:$PATH" USER trame-user ` I get the same error when trying to install it(requirements) on a python virtual environment
Can anyone help? Thank you.