# Uses packages
# libssh2
# curl
# Install libssh2
brew install libssh2
# Install cURL with libssh2 support
brew install curl --with-libssh2
# Once that is done. Check the curl version with 'curl -V' and look for the
# 'sftp' under protocols.
# If you can't find 'sftp', make sure correct new cURL version is being used.
# You can make sure that by adding this line in your ~/.bash_profile
#
# export PATH="/usr/local/opt/curl/bin:$PATH"
#