- Quick-install MINICONDA
- Create an environment
- specify packages you want to install:
conda create --name pykater python=3 numpy scipy scikit-learn pandas matplotlib mysql-connector-python
- Activate the environment
activate pykater
- Install deap
pip install deap
- Install OpenML python package
- github openml -> master branch, install:
git clone https://github.com/openml/openml-python
cd openml-python
python setup.py install
(https://github.com/openml/openml-python/blob/develop/examples/OpenMLDemo.ipynb)
- OpenML api-key
- create a file
openml_api_key.py
in the project's root directory containing a single line:
key = "your-openml-api-key"
python search_parameter_space.py ?
Conda guide:
conda info --envs