Error: can not read conda_channels.txt

I have carried all the requirements and dependencies into the environment.yml file as suggested at the following topic: Managing your Streamlit dependencies using conda

environment.yml

name: aqsolpred
channels:
- rdkit
- conda-forge
- defaults
dependencies:
    - libgcc=5.2.0
    - rdkit
    - pip
    - pip:
        - pandas==1.0.1
        - numpy==1.18.1
        - scikit-learn==0.22.2.post1
        - mordred
        - xgboost==1.0.2
        - streamlit==0.69.2
1 Like