- Created `environment_pytorch.yml` to define the conda environment for PyTorch with GPU support, including necessary packages like GDAL and SentinelHub. - Added `requirements_harvest.txt` for Python package dependencies related to data harvesting, including PyTorch, Pandas, NumPy, and others.
18 lines
297 B
YAML
18 lines
297 B
YAML
name: pytorch_gpu
|
|
channels:
|
|
- pytorch
|
|
- nvidia
|
|
- conda-forge
|
|
dependencies:
|
|
- python=3.10
|
|
- pytorch::pytorch
|
|
- pytorch::torchvision
|
|
- pytorch::torchaudio
|
|
- pytorch::pytorch-cuda=11.8
|
|
- gdal>=3.7.0
|
|
- pip
|
|
- pip:
|
|
- sentinelhub>=3.9.0
|
|
- shapely>=2.0.0
|
|
- pyproj>=3.4.0
|