-
-
Save robinsonkwame/585cf6796346a8f7ed1614cde513f8c8 to your computer and use it in GitHub Desktop.
Installing Auto-Sklearn and Pyrfr on Mac OSX.
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. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment