-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmaze-core-environment.yml
44 lines (44 loc) · 1.25 KB
/
maze-core-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
# Environment for Maze core.
name: maze
channels:
- pytorch
- conda-forge
dependencies:
- python=3.7
- cudatoolkit=10.2
- pytorch=1.11.0
- pygraphviz=1.7
- jupyterlab=2.1.4
- pip=21.1.2
- pandas=1.2.5
- numpy=1.19.5
- pip:
# you can find more info on how to install torch-scatter for your specific cuda version here:
# https://pytorch-geometric.readthedocs.io/en/latest/notes/installation.html#installation-via-pip-wheels
- --find-links https://data.pyg.org/whl/torch-1.11.0+cpu.html
- torch-scatter
- pyyaml==5.3.1
- tensorboard
- requests==2.23.0
- pillow==7.2.0
# pinned hydra-core and the associated omegaconf version to 1.1.0 pre-release
- hydra-core<1.2
- hydra-nevergrad-sweeper==1.3.0.dev0
- gym[box2d]<0.23; python_version < '3.8'
- pyglet<2.0; python_version < '3.8'
- gym<0.23; python_version >= '3.8'
- networkx==2.4
- matplotlib==3.2.2
- seaborn==0.10.1
- tqdm==4.50.2
- imageio==2.9.0
# train
- redis==3.4.1
- cloudpickle==1.2.2
# testing
- pytest==6.2.5
- pytest-cov==2.12.1
- pytest-xdist==2.5.0
- pytest-random-order==1.0.4
- pytest-timeout==2.1.0
- pytest-redis==2.0.0