From 5fa992c572a601289538b28de1c1b45200daa8b7 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Fri, 26 Jul 2019 18:19:14 -0500 Subject: [PATCH] [TSQBX] Fix install instructtions --- doc/misc.rst | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/doc/misc.rst b/doc/misc.rst index 0c4c158f..d72d829c 100644 --- a/doc/misc.rst +++ b/doc/misc.rst @@ -33,12 +33,21 @@ This set of instructions is intended for 64-bit Linux and macOS computers. #. ``conda config --add channels conda-forge`` -#. ``conda install gcc cython git pip pocl islpy pyopencl sympy pyfmmlib pytest`` +Then, on Linux: -#. Type the following commands:: +#. ``conda install cython git pip pocl islpy pyopencl sympy pyfmmlib pytest`` - hash -r; for i in pymbolic cgen genpy gmsh_interop modepy pyvisfile loopy boxtree sumpy meshmode; do python -m pip install git+https://github.com/inducer/$i; done - CC=gcc python -m pip install git+https://gitlab.tiker.net/inducer/pytential@tsqbx +#. Type the following command:: + + hash -r; for i in pymbolic cgen genpy gmsh_interop modepy pyvisfile loopy boxtree sumpy meshmode pytential; do python -m pip install git+https://github.com/inducer/$i; done + +And on macOS: + +#. ``conda install openmp clangdev cython git pip pocl islpy pyopencl sympy pyfmmlib pytest`` + +#. Type the following command:: + + hash -r; for i in pymbolic cgen genpy gmsh_interop modepy pyvisfile loopy boxtree sumpy meshmode pytential; do CC=clang python -m pip install git+https://github.com/inducer/$i; done Next time you want to use :mod:`pytential`, just run the following command:: -- GitLab