Skip to content

Instantly share code, notes, and snippets.

@afranzi
Last active October 23, 2018 21:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save afranzi/f3fed2a129e4ec2634f700401f782ffe to your computer and use it in GitHub Desktop.
Save afranzi/f3fed2a129e4ec2634f700401f782ffe to your computer and use it in GitHub Desktop.
Setting up MLflow
pyenv install 3.7.0
pyenv global 3.7.0 # Use Python 3.7
mkvirtualenv mlflow # Create a Virtual Env with Python 3.7
workon mlflow

Install required libraries.

pip install mlflow==0.7.0 \
            Cython==0.29 \ 
            numpy==1.14.5 \
            pandas==0.23.4 \
            pyarrow==0.11.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment