Skip to content
Snippets Groups Projects
Commit 801ec24e authored by David Verelst's avatar David Verelst
Browse files

updated docs

parent 4ea3b35a
No related branches found
No related tags found
No related merge requests found
...@@ -484,6 +484,16 @@ your running HAWC2 model (replace 123456 with the relevant job id): ...@@ -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 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 Re-launching failed jobs
------------------------ ------------------------
......
...@@ -2,14 +2,25 @@ ...@@ -2,14 +2,25 @@
# Installation manual # Installation manual
## Anaconda or Miniconda ## Anaconda or Miniconda on Linux
``` ```
conda update --all conda update --all
conda create -n wetb_py3 python=3.5 conda create -n wetb_py3 python=3.5
source activate wetb_py3 source activate wetb_py3
conda install setuptools_scm future h5py pytables pytest nose sphinx blosc conda install setuptools_scm future h5py pytables pytest nose sphinx blosc
conda install scipy pandas matplotlib cython xlrd coverage xlwt openpyxl conda install scipy pandas matplotlib cython xlrd coverage xlwt openpyxl paramiko
pip install pyscaffold pytest-cov --no-deps 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
``` ```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment