Skip to content

Instantly share code, notes, and snippets.

@RodolfoFerro
Last active June 29, 2022 11:13
Show Gist options
  • Save RodolfoFerro/e86d850beae0a056c29da8a17d2d4fb0 to your computer and use it in GitHub Desktop.
Save RodolfoFerro/e86d850beae0a056c29da8a17d2d4fb0 to your computer and use it in GitHub Desktop.
Anaconda environment for my workshop "Machine Learning as a Service" in PythonDay México 2018.
name: PythonDayMx-MLaaS
channels:
- defaults
- conda-forge
dependencies:
- python>=3.6
- unidecode
- requests
- seaborn
- flask
- scipy
- numpy
- opencv
- pandas
- matplotlib
- scikit-learn
- tensorflow>=1.9.0
- tensorflow-hub
- tensorboard
- graphviz
- pydot
- keras
- h5py

Installation

The latest version of Anaconda with Python >= 3.6 will be needed. We will be working with an Anaconda environment for this workshop.

To create the conda env and install the requirements just run:

conda env create -f environment.yml

To activate/deactivate the environment:

# Activate environment:
conda activate PythonDayMx-MLaaS

# Deactivate environment:
conda deactivate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment