Conda不会从yml文件创建环境。
OS: Ubuntu22.04雅美水母conda版本:最后可用(py39,linux x86_64)
name: env-name
channels:
- conda-forge
- bioconda
dependencies:
- python>=3.5, <3.7
- cmake>=3.9, <3.11
- r-essentials
- r-rgl
- pandas
- numpy
- scipy
- scikit-learn
- jupyter
- gsl
- tzlocal
- simplegeneric
- natsort
- h5py
- tqdm
- patsy
- llvmlite
- numba
- networkx
- joblib
- numexpr
- pytables
- seaborn
- statsmodels
- python-igraph
- louvain
- r-rngtools
- bioconductor-rhdf5lib
- pip
- pip:
- MulticoreTSNE
- anndata
- fa2
- gprofiler-official
- scanpy
- rpy2
- git+https://github.com/flying-sheep/anndata2ri

我试着使用这个yml文件来设置环境,但是每次这个过程都会像这样被卡住。
发布于 2022-11-07 13:10:42
您可以通过以下步骤来尝试:
conda config --remove channels conda-forge
conda config --add channels conda-forge如果它不起作用,那么尝试如下:
conda update conda如果什么都不起作用,试着看看:https://github.com/conda/conda/issues/9367#issuecomment-558863143
https://stackoverflow.com/questions/74335509
复制相似问题