mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
Few trivial documentation changes
This commit is contained in:
parent
923a8295ef
commit
b73464be7d
2 changed files with 8 additions and 4 deletions
|
|
@ -12,6 +12,7 @@ Active development of the OpenMC Monte Carlo code is currently led by:
|
|||
* `Adam Nelson <https://github.com/nelsonag>`_
|
||||
* `Jon Walsh <https://github.com/walshjon>`_
|
||||
* `Sterling Harper <https://github.com/walshjon>`_
|
||||
* `Will Boyd <https://github.com/wbinventor>`_
|
||||
* `Benoit Forget <http://web.mit.edu/nse/people/faculty/forget.html>`_
|
||||
* `Kord Smith <http://web.mit.edu/nse/people/faculty/smith.html>`_
|
||||
* `Andrew Siegel <http://www.mcs.anl.gov/about/people_detail.php?id=404>`_
|
||||
|
|
|
|||
|
|
@ -42,18 +42,21 @@ the following commands in a terminal:
|
|||
.. code-block:: sh
|
||||
|
||||
git clone git://github.com/mit-crpg/openmc.git
|
||||
cd openmc/src
|
||||
cd openmc
|
||||
git checkout -b master origin/master
|
||||
mkdir src/build
|
||||
cd src/build
|
||||
cmake ..
|
||||
make
|
||||
sudo make install
|
||||
|
||||
This will build an executable named ``openmc`` and install it (by default in
|
||||
/usr/local/bin). If you do not have administrator privileges, the last command
|
||||
can be replaced with a local install, e.g.
|
||||
/usr/local/bin). If you do not have administrator privileges, the cmake command
|
||||
should specify an installation directory where you have write access, e.g.
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
make install -e prefix=$HOME/.local
|
||||
cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local ..
|
||||
|
||||
.. _GitHub: https://github.com/mit-crpg/openmc
|
||||
.. _git: http://git-scm.com
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue