We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bfde56 commit 23179e7Copy full SHA for 23179e7
2 files changed
ci_scripts/install.sh
@@ -28,7 +28,7 @@ conda create -n testenv --yes python=$PYTHON_VERSION pip nose
28
source activate testenv
29
30
# Install requirements in correct order
31
-pip install -r requirements.txt
+cat requirements.txt | xargs -n 1 -L 1 pip install
32
33
if [[ "$COVERAGE" == "true" ]]; then
34
pip install coverage coveralls
doc/index.rst
@@ -56,7 +56,7 @@ Please install all dependencies manually with:
56
57
.. code:: bash
58
59
- pip install -r https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt
+ cat https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt | xargs -n 1 -L 1 pip install
60
61
Then install *auto-sklearn*
62
0 commit comments