prompt-da
PromptDepthAnything example
File Explorer
- promptda-github-demo.gif
- prompt_da_polycam.py
- prompt_da_ui.py
- __init__.py
- gradio_app.py
- prompt_da_polycam.py
- .gitattributes
- .gitignore
- LICENSE-APACHE
- LICENSE-MIT
- pixi.lock
- pyproject.toml
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pixi task
View Details ▼
pixi task
Manage tasks in the project environment.
pixi task add {{task_name}} {{task_command}}
Create a new task:
pixi task list
List all tasks in the project:
pixi task remove {{task_name}}
Remove a task:
pixi
View Details ▼
pixi
Developer Workflow and Environment Management for projects.
pixi init {{path/to/project}}
Initialize a new project:
pixi add {{dependency1 dependency2 ...}}
Add project dependencies:
pixi shell
Start a pixi shell in the project environment:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
