-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
57 lines (48 loc) · 1.03 KB
/
environment.yml
File metadata and controls
57 lines (48 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
47
48
49
50
51
52
53
54
55
56
57
# Helicon conda environment
#
# Create: conda env create -f environment.yml
# Activate: conda activate helicon
#
# For Apple Silicon (MLX acceleration):
# pip install mlx # after conda env create
#
# For NVIDIA/CUDA (WarpX GPU + botorch):
# conda env create -f environment.yml
# pip install torch --index-url https://download.pytorch.org/whl/cu121
# pip install botorch
name: helicon
channels:
- conda-forge
- defaults
dependencies:
- python=3.12
- pip
# Core numerical stack
- numpy>=1.24
- scipy>=1.10
- h5py>=3.8
# Config and CLI
- pydantic>=2.0
- pyyaml>=6.0
- click>=8.0
# Optimization
- scikit-learn>=1.3
# Testing
- pytest>=7.0
- pytest-cov
# Development
- ruff
- ipykernel
- jupyter
# Visualization
- matplotlib
- ipympl
# pip-only packages
- pip:
- helicon
# MLX (Apple Silicon only — install separately)
# - mlx>=0.10
# WarpX (install from pre-built wheel or source)
# - pywarpx
# BoTorch for Bayesian optimization (GPU optional)
# - botorch>=0.9