diff --git a/docs/howto-make-dlcs.md b/docs/howto-make-dlcs.md index 2c9ee437bf6b89882885f7604b6ab40fae3e67de..6fc15559a6fa599a889e0220a6d9d0f0480a1bcd 100644 --- a/docs/howto-make-dlcs.md +++ b/docs/howto-make-dlcs.md @@ -484,6 +484,16 @@ your running HAWC2 model (replace 123456 with the relevant job id): g-000 $ cd /scratch/$USER/123456.g-000.risoe.dk ``` +You can find what HAWC2 (or whatever other executable you are running) is +outputting to the command line in the file: +``` +/var/lib/torque/spool/JOBID.jess.dtu.dk.OU +``` +Or when watch what is happening at the end in real time +``` +tail -f /var/lib/torque/spool/JOBID.jess.dtu.dk.OU +``` + Re-launching failed jobs ------------------------ diff --git a/docs/install-anaconda.md b/docs/install-anaconda.md index f22d59b2745060de601de88838310ef74010ac69..0fb52e2149ae397fde6078e1cf91b731ecb25513 100644 --- a/docs/install-anaconda.md +++ b/docs/install-anaconda.md @@ -2,14 +2,25 @@ # Installation manual -## Anaconda or Miniconda +## Anaconda or Miniconda on Linux ``` conda update --all conda create -n wetb_py3 python=3.5 source activate wetb_py3 conda install setuptools_scm future h5py pytables pytest nose sphinx blosc -conda install scipy pandas matplotlib cython xlrd coverage xlwt openpyxl -pip install pyscaffold pytest-cov --no-deps +conda install scipy pandas matplotlib cython xlrd coverage xlwt openpyxl paramiko +conda install -c https://conda.anaconda.org/conda-forge pyscaffold pytest-cov +``` + +## Anaconda or Miniconda on Windows + +``` +conda update --all +conda create -n wetb_py3 python=3.4 +source activate wetb_py3 +conda install setuptools_scm future h5py pytables pytest nose sphinx +conda install scipy pandas matplotlib cython xlrd coverage xlwt openpyxl paramiko +conda install -c https://conda.anaconda.org/conda-forge pyscaffold pytest-cov ```