Need your own package repository for Alpine,
Cargo,
CocoaPods,
Composer,
Conan,
CRAN,
Dart,
Debian,
Docker,
Go,
Helm,
LuaRocks,
Maven,
npm,
NuGet,
Python,
RedHat,
Ruby,
Terraform,
Vagrant,
Raw & More?
Cloudsmith
provides better DevOps with simple and secure delivery
of your software, from dev to production.

Format-Specific Setup
To find out how to get setup locally so you can easily install packages, please select one of the formats from the tabs above.
Please note that the term repository here is Cloudsmith's concept of a package or artefact collection, and should not be confused with other package format specific meanings (such as the term as it is used by Docker, to mean a tagged image).
Note: Only help for package formats that exist in this repository is shown. You can also see the help for all package formats.
Need Help?
If you couldn't find what you needed in our documentation, then you can always chat to a member of our team instead. It's our mission to be your dedicated off-site team for package management, and we mean it. Come and chat with us, anytime.

Debian Repository Setup
Apt/Dpkg is the package manager of choice for Debian-like systems (such as Ubuntu, Linux Mint, Raspbian, etc.)
The following instructions are for Debian or compatible packages only.
Distribution Setup
To install packages, you can quickly setup the repository automatically (recommended):
curl -1sLf \
'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/setup/bash.deb.sh' \
| sudo -E bash
If you need to force a specific distribution, release/version, or even architecture, you can also do that (e.g. if your system is compatible but not identical):
curl -1sLf \
'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/setup/bash.deb.sh' \
| sudo -E distro=some-distro codename=some-codename arch=some-arch bash
or ... you can manually configure it yourself before installing packages:
apt-get install -y debian-keyring # debian only
apt-get install -y debian-archive-keyring # debian only
apt-get install -y apt-transport-https
curl -1sLf 'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/gpg/gpg.0607E2621F1564A6.key' | apt-key add -
curl -1sLf 'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/setup/config.deb.txt?distro=ubuntu&codename=xenial' > /etc/apt/sources.list.d/isc-kea-1-6.list
apt-get update
Note: Please replace ubuntu and xenial above with your actual operating system (distribution and distribution release/version).
Removing Setup
If you no longer want to install packages from the repository, you can remove it with:
rm /etc/apt/sources.list.d/isc-kea-1-6.list
apt-get clean
rm -rf /var/lib/apt/lists/*
apt-get update
Need Help?
If you couldn't find what you needed in our documentation, then you can always chat to a member of our team instead. It's our mission to be your dedicated off-site team for package management, and we mean it. Come and chat with us, anytime.

RedHat Repository Setup
A repository for RedHat-like systems (such as RHEL, CentOS, SUSE, Fedora, etc.), compatible with yum, dnf, zypper, etc.
The following instructions are for RedHat or compatible packages only.
Distribution Setup
To install packages you'll need to setup your repository, which is specific to your distribution:
To install packages, you can quickly setup the repository automatically (recommended):
curl -1sLf \
'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/setup/bash.rpm.sh' \
| sudo -E bash
If you need to force a specific distribution, release/version, or even architecture, you can also do that (e.g. if your system is compatible but not identical):
curl -1sLf \
'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/setup/bash.rpm.sh' \
| sudo -E distro=some-distro codename=some-codename arch=some-arch bash
or ... you can manually configure it yourself before installing packages:
yum install yum-utils pygpgme
rpm --import 'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/gpg/gpg.0607E2621F1564A6.key'
curl -1sLf 'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/setup/config.rpm.txt?distro=el&codename=7' > /tmp/isc-kea-1-6.repo
yum-config-manager --add-repo '/tmp/isc-kea-1-6.repo'
yum -q makecache -y --disablerepo='*' --enablerepo='isc-kea-1-6'
Note: Please replace el and 7 above with your actual distribution/version and use Wildcards when enabling multiple repos.
To install packages, you can quickly setup the repository automatically (recommended):
curl -1sLf \
'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/setup/bash.rpm.sh' \
| sudo -E bash
If you need to force a specific distribution, release/version, or even architecture, you can also do that (e.g. if your system is compatible but not identical):
curl -1sLf \
'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/setup/bash.rpm.sh' \
| sudo -E distro=some-distro codename=some-codename arch=some-arch bash
or ... you can manually configure it yourself before installing packages:
dnf install yum-utils pygpgme
rpm --import 'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/gpg/gpg.0607E2621F1564A6.key'
curl -1sLf 'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/setup/config.rpm.txt?distro=fedora&codename=29' > /tmp/isc-kea-1-6.repo
dnf config-manager --add-repo '/tmp/isc-kea-1-6.repo'
dnf -q makecache -y --disablerepo='*' --enablerepo='isc-kea-1-6' --enablerepo='isc-kea-1-6-source'
Note: Please replace fedora and 29 above with your actual distribution/version.
To install packages, you can quickly setup the repository automatically (recommended):
curl -1sLf \
'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/setup/bash.rpm.sh' \
| sudo -E bash
If you need to force a specific distribution, release/version, or even architecture, you can also do that (e.g. if your system is compatible but not identical):
curl -1sLf \
'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/setup/bash.rpm.sh' \
| sudo -E distro=some-distro codename=some-codename arch=some-arch bash
or ... you can manually configure it yourself before installing packages:
curl -1sLf 'https://dl.cloudsmith.io/public/isc/kea-1-6/cfg/setup/config.rpm.txt?distro=opensuse&codename=42.2' > /tmp/isc-kea-1-6.repo
zypper ar -f '/tmp/isc-kea-1-6.repo'
zypper --gpg-auto-import-keys refresh isc-kea-1-6 isc-kea-1-6-source
Note: Please replace opensuse and 42.2 above with your actual distribution/version.
Removing Setup
If you no longer want to install packages from the repository, you can remove it with:
rm /etc/yum.repos.d/isc-kea-1-6.repo
rm /etc/yum.repos.d/isc-kea-1-6-source.repo
rm /etc/yum.repos.d/isc-kea-1-6.repo
rm /etc/yum.repos.d/isc-kea-1-6-source.repo
zypper rr isc-kea-1-6
zypper rr isc-kea-1-6-source
Need Help?
If you couldn't find what you needed in our documentation, then you can always chat to a member of our team instead. It's our mission to be your dedicated off-site team for package management, and we mean it. Come and chat with us, anytime.
What's this page? You can always download packages from Cloudsmith manually, but native package manager setup allows you to simplify and automate downloads. A native package manager has intelligence built-in that allows it to understand concepts like metadata, versioning, duplication, convergence, etc. As such, we will always recommend that you install natively where possible. Learn more in the setup documentation.