ImportError: No module named 'paramiko'
You need to do pip install paramiko
so that python sees that module. If you work on a virtual environment, you need to workon <env_name>
first and then pip install
the desired module.
type pip3 install paramiko
if you want to install it for python3