python – Long creation time with conda env create -f environment.yml
I have the following environment.yml file. It is taking 1.5 hours to create this environment. How to improve (or debug) the creation time?
name: test_syn_spark_3_3_1
channels:
- defaults
- conda-forge
dependencies:
- python=3.10
- pandas=1.5
- pip=23.0
- pyarrow=11.0.0
- pyspark=3.3.1
- setuptools=65.0
- pip:
- azure-common==1.1.28
- azure-core==1.26.1
- azure-datalake-store==0.0.51
- azure-identity==1.7.0
- azure-mgmt-core==1.3.2
- azure-mgmt-resource==21.2.1
- azure-mgmt-storage==20.1.0
- azure-storage-blob==12.16.0
- azure-mgmt-authorization==2.0.0
- azure-mgmt-keyvault==10.1.0
- azure-storage-file-datalake==12.11.0
- check-wheel-contents==0.4.0
- pyarrowfs-adlgen2==0.2.4
- wheel-filename==1.4.1
Read more here: Source link
