Hi All!
I’m trying to set-up Binder with one of my projects, however I’m getting an error I’ve never seen before when using Binder
Waiting for build to start...
Picked Git content provider.
Cloning into '/tmp/repo2docker3gdg2qgt'...
HEAD is now at 47f3335 added further documentation
Using DockerBuildPack builder
Step 1/7 : FROM continuumio/miniconda3:latest
---> 52daacd3dd5d
Step 2/7 : COPY environment.yml .
---> Using cache
---> 1a85966d3b40
Step 3/7 : COPY satip /satip
---> Using cache
---> 8872a596e226
Step 4/7 : COPY setup.py .
---> Using cache
---> aef8dae7247f
Step 5/7 : RUN conda create env -f environment.yml
---> Running in 0261c718bb79
usage: conda [-h] [-V] command ...
conda: error: unrecognized arguments: environment.yml
The environment.yml
that I’m trying to install is quite a large one, however it works fine for fresh installs locally.
name: satip_dev
channels:
- conda-forge
- coecms
dependencies:
- python>=3.7
- pytest
- pytables
- pandas
- matplotlib
- jupyterlab
- ipympl
- nodejs
- satpy
- netCDF4
- xarray
- cartopy
- pyproj
- pyinterp
- geopandas
- rasterio
- pillow
- gdal
- tabulate
- python-dotenv
- xmltodict
- dataset
- seaborn
- mkdocs-material
- twine
- gcsfs
- zarr
- dagster
- dagit
- mkdocs
- mkdocs-material
- pip
- pip:
- -e .
- dagster-airflow
- nbdev
- ipypb
- feautils
- slack-logger
- mkdocs-material-extensions
- mkdocstrings
- google-cloud-storage
- configparser
- pandas_gbq
- junix
The repository I’m trying to install from is here. Any advice on how I can fix this would be appreciated.