diff --git a/docs/howto-make-dlcs.md b/docs/howto-make-dlcs.md index cdd40cd2867027cff434e1b08f1c2e5cd1d6e0ee..e9623a4b733a88ae2c49704d3fad418cb257f069 100644 --- a/docs/howto-make-dlcs.md +++ b/docs/howto-make-dlcs.md @@ -370,8 +370,9 @@ This approach gives you more flexibility and room for custimizations, but you will need to install a Python environment with all its dependencies locally. Additionally, you need access to the cluster discs from your local workstation. -The installation procedure for wetb is outlined in the [installation manual] -(https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/blob/master/docs/install-manual-detailed.md). +The installation procedure for wetb is outlined in the +[simple user](docs/install.md) or the +[developer/contributor](docs/developer-guide.md) installation manual. Optional configuration diff --git a/wetb/utils/cluster_tools/ssh_client.py b/wetb/utils/cluster_tools/ssh_client.py index 74ebd6b9f891371b3bde2fa2130b5b834415175b..0c8c8786f2e5e4133900f6c6a75d0a098cc04cc6 100644 --- a/wetb/utils/cluster_tools/ssh_client.py +++ b/wetb/utils/cluster_tools/ssh_client.py @@ -5,9 +5,13 @@ Created on 27/11/2015 ''' from io import StringIO -import paramiko -import os import sys +try: + import paramiko +except Exception as e: + sys.stderr.write("Paramiko(ssh client module) not imported\n%s"%str(e) ) + +import os import threading from _collections import deque import time