From 74463ceb34b0e1c43f54aead53b316f0c81638ef Mon Sep 17 00:00:00 2001 From: Matthias Feurer Date: Mon, 18 May 2020 09:25:47 +0200 Subject: [PATCH 1/2] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md 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 From e00b49ed4883aacbeca4a9aa36f10a74be6d35d4 Mon Sep 17 00:00:00 2001 From: Francois Berenger Date: Wed, 16 Sep 2020 15:38:36 +0900 Subject: [PATCH 2/2] install doc: pip3 rather than pip pip might be for python2, if installed on the machine in parallel with python3. By invoking pip3, you surely call the one for python3. --- doc/installation.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ===================