Skip to content
Snippets Groups Projects
environment.yml 451 B
Newer Older
  • Learn to ignore specific revisions
  • # Open a terminal and execute the following command to create the conda environment
    
    # for the workshop
    # 'conda env create -f environment.yml'
    
    
    name: machine_learning_workshop_2021
    
    
    channels:
        - https://repo.anaconda.com/pkgs/main
        - conda-forge
    
    dependencies:
    
        - python==3.8
        - pandas
        - matplotlib
        - scikit-learn==0.24.1
        - seaborn
        - jupyterlab
        - pydot
        - pillow
        - pip
        - pip:
                - tensorflow==2.4.1