-
Notifications
You must be signed in to change notification settings - Fork 15
/
environment_mac.yml
54 lines (54 loc) · 1.25 KB
/
environment_mac.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
49
50
51
52
53
54
name: tbv-v0
channels:
# The tbv mac environment closely follows the linux conda environment file,
# except for two noticeable differences: no CUDA support.
#
# for priority order, we prefer pytorch as the highest priority as it supplies
# latest stable packages for numerous deep learning based methods. conda-forge
# supplies higher versions of packages like opencv compared to the defaults
# channel.
- pytorch
- conda-forge
- defaults
dependencies:
# python essentials
- python>=3.8
- pip
# formatting and dev environment
- black
- coverage
- flake8
- mypy
- pylint
- pytest
# dask and related
- dask # same as dask[complete] pip distribution
- python-graphviz
# core functionality and APIs
- matplotlib>=3.4.2
- networkx
- numpy
- pandas
- pillow>=8.0.1
- scikit-learn
- hydra-core
# # 3rd party algorithms for different modules
- captum
- mapbox_earcut
- opencv # preferring conda-forge's distribution as it provides the latest distribution
- pytorch
- shapely
- torchvision
- trimesh
# io
- h5py
- plotly>=4.14.3
- tabulate
- imageio
- pip:
- av2==0.1.0
- omegaconf
- seaborn
- scipy>=1.6.0
- scikit-image # needed for seamseg
- umsgpack # needed for seamseg