Skip to content

Commit

Permalink
Update to preferred pip invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
guyer committed May 13, 2022
1 parent b1c264b commit e124351
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions INSTALLATION.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Recommended Method
followed, for either, by::

activate <MYFIPYENV>
pip install fipy
python -m pip install fipy

.. attention::

Expand Down Expand Up @@ -198,7 +198,7 @@ It is not necessary to formally install :term:`FiPy`, but if you wish
to do so and you are confident that all of the requisite packages have
been installed properly, you can install it by typing::

$ pip install fipy
$ python -m pip install fipy

or by unpacking the archive and typing::

Expand Down Expand Up @@ -366,7 +366,7 @@ Our preferred development environment is set up with::

$ conda create --name <MYFIPYENV> --channel conda-forge python=<PYTHONVERSION> fipy
$ source activate <MYFIPYENV>
$ pip install scikit-fmm
$ python -m pip install scikit-fmm
$ conda remove --channel conda-forge --force fipy
$ git clone https://github.com/usnistgov/fipy.git
$ cd fipy
Expand Down
2 changes: 1 addition & 1 deletion documentation/NIX-README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ knows about a ``.local`` directory in the base :term:`FiPy` directory
used by :term:`Pip` for installation. So, for example, to install the
``toolz`` package from within the Nix shell use::

$ pip install --user toolz
$ python -m pip install --user toolz

The ``.local`` directory will persist after the Nix shell has been
closed.
Expand Down
6 changes: 3 additions & 3 deletions documentation/USAGE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -993,11 +993,11 @@ command in the base directory::

Bibliographic citations require the `sphinxcontrib-bibtex` package::

$ pip install sphinxcontrib-bibtex
$ python -m pip install sphinxcontrib-bibtex

Some documentation uses `numpydoc` styling::

$ pip install numpydoc
$ python -m pip install numpydoc

Some embeded figures require `matplotlib`, `pandas`, and `imagemagick`::

Expand All @@ -1011,7 +1011,7 @@ command in the base directory::
need `pyspelling`, `hunspell`, and the `libreoffice` dictionaries::

$ conda install --channel conda-forge hunspell
$ pip install pyspelling
$ python -m pip install pyspelling
$ wget -O en_US.aff https://cgit.freedesktop.org/libreoffice/dictionaries/plain/en/en_US.aff?id=a4473e06b56bfe35187e302754f6baaa8d75e54f
$ wget -O en_US.dic https://cgit.freedesktop.org/libreoffice/dictionaries/plain/en/en_US.dic?id=a4473e06b56bfe35187e302754f6baaa8d75e54f

Expand Down

0 comments on commit e124351

Please sign in to comment.