Skip to content

Instantly share code, notes, and snippets.

@robinsonkwame
robinsonkwame / auto-sklearn.txt
Last active July 21, 2024 08:37 — forked from yngtodd/auto-sklearn.txt
Installing Auto-Sklearn and Pyrfr on Mac OSX.
# For MacOS, non conda environment
xcode-select --install # install gcc, command line tools if not present
brew install swig # install wrapper, interface between C/C++ libarires (needed for pyrfr)
# Now we can install auto-sklearn, by installing the pyrfr dependency first
PIP_NO_CACHE_DIR=false
pip install pyrfr auto-sklearn # could use pipenv too
# if in Docker, can remove command line tools, etc.