-
Notifications
You must be signed in to change notification settings - Fork 1
/
environment.yml
35 lines (32 loc) · 1.05 KB
/
environment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Create environment with "conda env create", update with "conda env update"!
# This file contains the top level dependencies of the empyre project!
# requirements.txt also contains sub-dependencies, generated by "pip freeze > requirements.txt"!
# Add new dependencies here, then "conda env update", then "pip freeze > requirements.txt"!
# To see if compatible upgrades are available for the current packages, use "conda upgrade --all"!
# When packages are deprecated/deleted, it may be best to recreate the environment from scratch!
name: mlalfa
channels:
- defaults # Default conda channels, on top to keep highest priority!
- conda-forge # Used for user created things!
dependencies:
# Basic:
- python=3.7
- setuptools
- numpy=1.17
- scipy=1.3
- tqdm=4.36
# Machine learning:
- scikit-learn=0.23
- py-xgboost-cpu
# Plotting and colors:
- matplotlib=3.1
- Pillow=6.1
- seaborn=0.11
- python-graphviz=0.16
# IPython and notebooks:
- ipython=7.7
- jupyter=1.0
- ipyevents=0.7
- ipywidgets=7.5
- ipympl=0.5
- nb_conda=2.2