Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ If you have `Conda <conda.io>`_::
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.

Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down