This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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. |