|
--- |
|
title: T3D |
|
emoji: 🦷 |
|
colorFrom: gray |
|
colorTo: red |
|
sdk: gradio |
|
sdk_version: 4.14.0 |
|
app_file: run.py |
|
pinned: false |
|
license: mit |
|
--- |
|
|
|
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 |
|
``` |
|
|