Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion skills/transformation/depth-estimation/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,5 @@ class MyPrivacySkill(TransformSkillBase):

```bash
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
pip install --ignore-requires-python -r requirements.txt
```
4 changes: 4 additions & 0 deletions skills/transformation/depth-estimation/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Depth Estimation — Privacy Transform Skill
# NOTE: torch and torchvision MUST be version-paired.
# Loose ranges cause pip to flip between incompatible versions.
#
# INSTALL WITH: pip install --ignore-requires-python -r requirements.txt
# The depth-anything-v2 PyPI wheel declares python_requires>=3.12 in its
# metadata, but is pure Python (py3-none-any) and works on Python 3.11+.
torch~=2.7.0
torchvision~=0.22.0
depth-anything-v2>=0.1.0
Expand Down