I'm trying to install conda environment using the command:
conda env create -f devenv.yaml
My .yaml file is
name: myname
channels:
- conda-forge
- bioconda
dependencies:
# Package creation and environment management
- conda-build
# Automation control (command line interface, workflow and multi-process management)
- python-dotenv
- click
- snakemake-minimal
- joblib
- numba
# Workspace
- notebook
# Visualization
- plotly
- plotly-orca
- matplotlib
- seaborn
- shap
- openpyxl
- ipywidgets
- tensorboard
# Data manipulation
- numpy
- pandas
- pyarrow
# Functional style tools
- more-itertools
- toolz
# Machine learning
- scikit-learn
- imbalanced-learn
- scikit-image
- statsmodels
- catboost
- hyperopt
- tsfresh
# Deep learning
- pytorch
# code checking and formatting
- pylint
- black
- flake8
- mypy
# Python base
- python
- pip
- pip:
I've tried to update conda but it doesn't help. It just stuck on solving the environment.
conda version: 4.11.0 c OS: Ubuntu 18.04.5 LTS
The exact same environment works fine on my mac, but not on that server. What could be the issue? I appreciate any suggestions. Thx.