-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
28 lines (23 loc) · 847 Bytes
/
environment.yml
File metadata and controls
28 lines (23 loc) · 847 Bytes
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
# Conda environment for ReplicantDriveSim
# Minimal conda configuration - Python package dependencies managed in pyproject.toml
name: drive
channels:
- conda-forge
- defaults
dependencies:
# Python version (REQUIRED: ML-Agents only supports 3.10.1-3.10.12)
- python=3.10.12
# Package management tools
- pip
- setuptools
- wheel
# Build dependencies for native library compilation
- cmake>=3.29
# Environment setup instructions:
# 1. Create environment: conda env create -f environment.yml
# 2. Activate environment: conda activate drive
# 3. Verify Python: python --version (should show 3.10.12)
# 4. Install package: make install (or: pip install -e .)
# 5. Update environment: conda env update -f environment.yml --prune
#
# All Python package dependencies are managed in pyproject.toml (PEP 621)