CoolFace
Apppublic

MassiveDL/T3D

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
App README

Conda setup

bash
mini_url_linux="https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh"
curl -fsSL $mini_url_linux -o conda.sh
sudo mkdir -p /opt/dev && sudo chown -R "$USER:$USER" /opt/dev
chmod +x conda.sh && bash conda.sh -b -p /opt/dev/conda

cat >~/.bashrc <<-'EOF'
if [ -f "/opt/dev/conda/etc/profile.d/conda.sh" ]; then
    . "/opt/dev/conda/etc/profile.d/conda.sh"
else
    export PATH="/opt/dev/conda/bin:$PATH"
fi
EOF

conda create -n w3 python=3.12 scipy numpy pyglet trimesh gradio -c conda-forge
argo tunnel --url http://127.0.0.1:7860