Installing CKAN on Debian Jessie or Debian Stretch - brookmire/CKAN GitHub Wiki
Installing dependencies
Required dependencies for CKAN are mono and development libraries of libcurl
sudo apt-get -y install mono-complete libcurl4-openssl-dev
Installing certificates
Certificates needs to be imported into Mono's certificate store, mozroots can download and import trusted root certificates from Mozilla's LXR.
mozroots --import
Installing CKAN
Download the latest ckan.exe
from https://github.com/KSP-CKAN/CKAN/releases.
Now you can start CKAN
Option 1:
mono ckan.exe
Option 2:
# Make ckan.exe executable (you only need to do this once)
chmod 755 ckan.exe
# Start ckan
./ckan.exe
More information on using the client is also available.