prompt-da

(★ 145)

PromptDepthAnything example

File Explorer

  • .gitattributes
  • .gitignore
  • LICENSE-APACHE
  • LICENSE-MIT
  • pixi.lock
  • pyproject.toml
  • README.md

# Use via CDN

jsDelivr

jsDelivr 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 ▼

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 ▼

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 ▼

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 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:

// repository documentation