File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ conda create -n testenv --yes python=$PYTHON_VERSION pip nose
2828source activate testenv
2929
3030# Install requirements in correct order
31- pip install -r requirements.txt
31+ cat requirements.txt | xargs -n 1 -L 1 pip install
3232
3333if [[ " $COVERAGE " == " true" ]]; then
3434 pip install coverage coveralls
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Please install all dependencies manually with:
5656
5757.. code :: bash
5858
59- pip install -r https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt
59+ cat https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt | xargs -n 1 -L 1 pip install
6060
6161 Then install *auto-sklearn *
6262
You can’t perform that action at this time.
0 commit comments