diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644
index 0000000000..bde82bebab
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -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
diff --git a/doc/installation.rst b/doc/installation.rst
index 4d83e3566a..e50e576052 100644
--- a/doc/installation.rst
+++ b/doc/installation.rst
@@ -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 `_
or an
`Anaconda environment `_.
-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
===================