I am trying to create a local development environment using conda with azureml
libraries. Following environment.yml file works fine.
name: cortixml_azure_env
channels:
- conda-forge
- defaults
dependencies:
- python=3.8.3
- pandas
- numpy
- flake8
- black
- pip
- pip:
- pyarrow
- pytest
- rope
- dask[dataframe,distributed]
- azure-storage-blob
- opencensus-ext-azure
- azureml-core
- azureml-pipeline-steps
- azureml-pipeline-core
- azureml-pipeline
- azureml-mlflow
- scikit-learn
- lightgbm
- xgboost
But the moment, I add adlfs under pip installable, it get stuck at "Installing pip dependencies:" for hours and finally fails. This happens for opencensus-ext-azure
as well.
Any suggestions?