Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

## Describe the bug ##
Please describe the bug you're experiencing is precise as possible.

## To Reproduce ##
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

## Expected behavior ##
A clear and concise description of what you expected to happen.

## Actual behavior, stacktrace or logfile ##
Please describe the expected behavior here. If there is a stacktrace, please paste it here. If there is no stacktrace printed, please upload the logfile which was stored in the `tmp_folder`

## Environment and installation: ##

Please give details about your installation:

* OS
* Is your installation in a virtual environment or conda environment?
* Python version
* Auto-sklearn version
6 changes: 3 additions & 3 deletions doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@ Please install all dependencies manually with:

.. code:: bash

curl https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt | xargs -n 1 -L 1 pip install
curl https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt | xargs -n 1 -L 1 pip3 install

Then install *auto-sklearn*:

.. code:: bash

pip install auto-sklearn
pip3 install auto-sklearn

We recommend installing *auto-sklearn* into a
`virtual environment <http://docs.python-guide.org/en/latest/dev/virtualenvs/>`_
or an
`Anaconda environment <https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html>`_.

If the ``pip`` installation command fails, make sure you have the `System requirements`_ installed correctly.
If the ``pip3`` installation command fails, make sure you have the `System requirements`_ installed correctly.

Ubuntu installation
===================
Expand Down