-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenvironment.yml
48 lines (46 loc) · 1.04 KB
/
environment.yml
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
name: vqr
channels:
- pytorch
- conda-forge
- defaults
dependencies:
# Development deps
- black
- click
- cmake # needed to compile cvxpy when installed via pip
- ipython
- isort
- jupyter
- jupyterlab
- jupyterlab-spellchecker
- llvm-openmp
- matplotlib
- nodejs
- pandas
- pip
- pre-commit
- pytest
- pytest-benchmark
- pytest-cov
- pytest-repeat
- pytest-rerunfailures
- pytest-xdist
- python=3.9.*
- requests
# VQR lib
# control pytorch version (won't be installed again by pip install -e .)
- pytorch=1.13.*
- cudatoolkit=11.3 # comment out on osx-arm64
- cudatoolkit-dev=11.3 # comment out on osx-arm64
- pip:
- pykeops
- geomloss
# install vqr as a lib with pip (its deps are specified in setup.cfg)
# Note: For KeOps to work, after installing this env run:
# conda env config vars set CPATH="${CONDA_PREFIX}/include:${CPATH}"
# conda env config vars set LD_LIBRARY_PATH="$CONDA_PREFIX/lib64:$LD_LIBRARY_PATH"
- -e .
platforms:
- osx-64
- osx-arm64
- linux-64