Skip to content

Commit

Permalink
Merge pull request #17 from psnbaba/patch-1
Browse files Browse the repository at this point in the history
Update tutorial.rst
  • Loading branch information
prabhuramachandran committed Jun 9, 2019
2 parents c7fe50a + 65eb89a commit 512c371
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/source/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,19 @@ Running the simulations on a remote machine requires a few things:
without a password (see `article on password-less ssh
<http://askubuntu.com/questions/46930/how-can-i-set-up-password-less-ssh-login>`_.
- the computer should have a working basic Python interpreter.
- on Linux the remote ``libpython*.so`` should be built as a shared library.
If you are building Python from source you must do
``./configure --enable-shared`` or use a packaged Python like conda/miniconda/edm.
- Make sure that the python interpreter is in the $PATH and that the
library directory is in $LD_LIBRARY_PATH -- again this applies only for a
Python binary that you have built by yourself.
- while running commands from the host computer, remove the following from the
remote computer's .bashrc::
case $- in
*i*) ;;
*) return;;
esac

For more complex dependencies, you need to make sure the remote machine has
the necessary software.
Expand Down

0 comments on commit 512c371

Please sign in to comment.