-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconda_linux.yaml
More file actions
46 lines (41 loc) · 1.03 KB
/
Copy pathconda_linux.yaml
File metadata and controls
46 lines (41 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: human_calib
channels:
- pytorch
- nvidia
- conda-forge
- defaults
dependencies:
# --- Core Environment ---
- python=3.8
- pip
- pytorch::pytorch=1.13.1
- pytorch::torchvision=0.14.1
- pytorch::pytorch-cuda=11.7 # Assure la compatibilité CUDA pour PyTorch
- mkl=2024.0.0 # Fixes "undefined symbol: iJIT_NotifyEvent" bug in some PyTorch builds
# --- Scientific & Data Handling ---
- numpy
- scipy
- pandas
- pyyaml
# --- Video & Visualization ---
- matplotlib
- tqdm
- ffmpeg
# --- Pip Dependencies ---
- pip:
# --- 2D Pose Estimation (RTMPose) ---
- rtmlib
- onnxruntime-gpu # Inference motor for RTMPose, GPU version
# --- Calibration & 3D ---
- opencv-contrib-python==4.7.0.72
- numba
- pycalib-simple
# --- Utilities ---
- tomli # To open config .toml (for Python 3.8 to 3.10)
- nvgpu # For automatic selection GPU
- imageio==2.22.2
- networkx
- tabulate
- termcolor
- portalocker
- ninja