Skip to content

Export u3d in a container? #25

Answered by ghost
ghost asked this question in Q&A
Dec 7, 2020 · 2 comments · 13 replies
Discussion options

You must be logged in to vote

It is possible to export u3d files with pymeshlab in a container but it requires installing the IDTFConverter tool manually.

Here is a Dockerfile with the requisite dependencies and steps:

FROM ubuntu

# install pymeshlab dependencies
# noninteractive frontend required to install tzdata w/out input
RUN apt update && DEBIAN_FRONTEND=noninteractive apt install --yes \
    python3 \
    python3-pip \
    libgl1-mesa-dev \
    tzdata \
    libglib2.0-0
# install pymeshlab
RUN pip3 install pymeshlab

# install IDTFConverter
# dependencies
RUN apt update && apt install --yes \
    build-essential \
    git \
    libpng-dev \
    libjpeg-dev \
    locales
# set local to en_US.UTF-8 (IDTFConverte…

Replies: 2 comments 13 replies

Comment options

You must be logged in to vote
13 replies
@alemuntoni
Comment options

@alemuntoni
Comment options

@ghost
Comment options

@Sea421
Comment options

@alemuntoni
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants