-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathenvironment.yml
More file actions
71 lines (71 loc) · 1.91 KB
/
Copy pathenvironment.yml
File metadata and controls
71 lines (71 loc) · 1.91 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Simple install with
# mamba env create -f environment.yml
name: myria3d
channels:
- pytorch
- nvidia
- pyg
- comet_ml
- conda-forge
- anaconda
dependencies:
- python=3.12
- pip
# --------- Deep Learning --------- #
- pytorch::pytorch==2.4.1
- pytorch::pytorch-cuda
- pytorch::torchvision
- conda-forge::lightning
- conda-forge::torchmetrics
- pyg::pyg
- pyg::pytorch-cluster
- pyg::pytorch-scatter
- pyg::pytorch-sparse
- anaconda:mkl==2022.*
# Troubleshooting: if libcusparse.so.11. errors occur, run
# export LD_LIBRARY_PATH="/home/${USER}/miniconda/envs/lib:$LD_LIBRARY_PATH"
# ou
# export LD_LIBRARY_PATH="/home/${USER}/anaconda3/envs/lib:$LD_LIBRARY_PATH"
# see https://github.com/pyg-team/pytorch_geometric/issues/2040#issuecomment-766610625
# --------- data formats --------- #
- numpy
- h5py
# --------- geo --------- #
- pdal==2.10.*
- python-pdal
- conda-forge:gdal
- conda_forge:pyproj
- laspy
# --------- loggers --------- #
- comet_ml::comet_ml
- conda-forge::urllib3<2 # To solve for https://github.com/GeneralMills/pytrends/issues/591
# --------- Visualization --------- #
- pandas
- matplotlib
- seaborn # used in some callbacks
# --------- parameters handling --------- #
- hydra-core
- hydra-colorlog
# --------- linters --------- #
- pre-commit # hooks for applying linters on commit
- black # code formatting
- isort # import sorting
- flake8 # code analysis
# --------- tests --------- #
- pytest
- coverage
- pytest-cov
# --------- others --------- #
- python-dotenv # loading env variables from .env file
- rich # beautiful text formatting in terminal
- sh # for running bash commands in some tests
- pudb # debugger
- twine # to publish pip package
# # --------- Documentation --------- #
- sphinx
- recommonmark
- rstcheck
- conda_forge:myst-parser
- pip:
- build
- ign-pdal-tools==1.16.0