diff --git a/automl/automl_env_mac.yml b/automl/automl_env_mac.yml new file mode 100644 index 00000000..bf3e13f7 --- /dev/null +++ b/automl/automl_env_mac.yml @@ -0,0 +1,17 @@ +name: azure_automl +dependencies: + # The python interpreter version. + # Currently Azure ML only supports 3.5.2 and later. +- python=3.6 +- nb_conda +- matplotlib +- numpy>=1.15.3 +- cython +- urllib3<1.24 +- scipy>=0.19.0,<0.20.0 +- scikit-learn>=0.18.0,<=0.19.1 +- pandas>=0.22.0,<0.23.0 +- pip: + # Required packages for AzureML execution, history, and data preparation. + - azureml-sdk[automl,notebooks] + - pandas_ml diff --git a/automl/automl_setup_mac.sh b/automl/automl_setup_mac.sh index ebcae4bc..c4b3c912 100644 --- a/automl/automl_setup_mac.sh +++ b/automl/automl_setup_mac.sh @@ -11,7 +11,7 @@ fi if [ "$AUTOML_ENV_FILE" == "" ] then - AUTOML_ENV_FILE="automl_env.yml" + AUTOML_ENV_FILE="automl_env_mac.yml" fi if [ ! -f $AUTOML_ENV_FILE ]; then @@ -29,6 +29,7 @@ else conda install lightgbm -c conda-forge -y && jupyter nbextension install --py azureml.train.widgets --user && jupyter nbextension enable --py azureml.train.widgets --user && + pip install numpy==1.15.3 echo "" && echo "" && echo "***************************************" && @@ -44,5 +45,3 @@ if [ $? -gt 0 ] then echo "Installation failed" fi - -