From 97d5345dd33bafd3f19ef79c8adbea70bd419d30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mihai=20Capot=C4=83?= Date: Thu, 6 Feb 2020 14:53:10 -0800 Subject: [PATCH] docs: Add --no-use-pep517 flag to Pip Fixes #435. --- CONTRIBUTING.rst | 2 +- README.rst | 2 +- docs/installation.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 18d669c6c..254def9f7 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -113,7 +113,7 @@ checks from ``pr-check.sh`` using the steps bellow:: source ../brainiak_pr_venv/bin/activate # install brainiak in editable mode and developer dependencies - python3 -m pip install -U -r requirements-dev.txt + python3 -m pip install --no-use-pep517 -U -r requirements-dev.txt # static analysis ./run-checks.sh diff --git a/README.rst b/README.rst index 0046e5fc4..e4338eaae 100644 --- a/README.rst +++ b/README.rst @@ -33,7 +33,7 @@ If you have `Conda `_:: Otherwise, or if you want to compile from source, install the requirements (see `docs/installation`) and then install from PyPI:: - python3 -m pip install brainiak + python3 -m pip install --no-use-pep517 brainiak Note that we do not support Windows. diff --git a/docs/installation.rst b/docs/installation.rst index fbf273ede..8f9c6cf36 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -93,7 +93,7 @@ Installing and upgrading The Brain Imaging Analysis Kit is available on PyPI. You can install it (or upgrade to the latest version) using the following command:: - python3 -m pip install -U brainiak + python3 -m pip install --no-use-pep517 -U brainiak .. warning:: Running `python setup.py install` might fail. It is recommended to install using pip.