Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...

Downloads:
171,590
Downloads of v 22.3:
35,163
Last Update:
06 May 2020
Package Maintainer(s):
Software Author(s):
- Joe Armstrong
- Robert Virding
- Mike Williams
Tags:
erlang languages
Erlang
Downloads:
171,590
Downloads of v 22.3:
35,163
Software Author(s):
- Joe Armstrong
- Robert Virding
- Mike Williams
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
All Checks are Passing
2 Passing Test
To install Erlang, run the following command from the command line or from PowerShell:
To upgrade Erlang, run the following command from the command line or from PowerShell:
To uninstall Erlang, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download erlang --internalize --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade erlang -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade erlang -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure erlang installed
win_chocolatey:
name: erlang
state: present
version: 22.3
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'erlang' do
action :install
version '22.3'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: erlang,
Version: 22.3,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller erlang
{
Name = 'erlang'
Ensure = 'Present'
Version = '22.3'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'erlang':
provider => 'chocolatey',
ensure => '22.3',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install erlang version="22.3" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 07 May 2020.
Erlang is a programming language used to build massively scalable soft real-time systems with requirements on high availability. Some of its uses are in telecoms, banking, e-commerce, computer telephony and instant messaging. Erlang's runtime system has built-in support for concurrency, distribution and fault tolerance.
OTP is set of Erlang libraries and design principles providing middle-ware to develop these systems. It includes its own distributed database, applications to interface towards other languages, debugging and release handling tools.
<#
.SYNOPSIS
An install script for installing Erlang silently on the machine via ChocolateyNuGet
.NOTES
Author: Onorio Catenacci - [email protected]
Version: 22.3
#>
$package = 'erlang'
$version = '22.3'
$erl_version = '10.7'
$params = @{
PackageName = $package
FileType = 'exe'
SilentArgs = '/S'
Url = "https://www.erlang.org/download/otp_win32_$version.exe"
CheckSum = '8878aea69f593f2e4cd8838b558fa99531addc4528c673a079e84d6cf306c031'
CheckSumType = 'sha256'
Url64 = "https://www.erlang.org/download/otp_win64_$version.exe"
CheckSum64 = 'f6444c1229d05e866ea15dc8e372bd45cec822d229f6b06f34b0011121e8ca40'
CheckSumType64 = 'sha256'
validExitCodes = @(0)
}
Install-ChocolateyPackage @params
$baseErlangPath = "$env:ProgramFiles/erl$erl_version/erts-$erl_version/bin"
Generate-BinFile "erl" -path "$baseErlangPath/erl.exe"
Generate-BinFile "werl" -path "$baseErlangPath/werl.exe"
Generate-BinFile "erlc" -path "$baseErlangPath/erlc.exe"
Generate-BinFile "escript" -path "$baseErlangPath/escript.exe"
Generate-BinFile "dialyzer" -path "$baseErlangPath/dialyzer.exe"
$package = 'erlang'
$version = '22.3'
$erl_version = '10.7'
start-process -wait "C:\Program Files\erl$erl_version\uninstall.exe /S"
#And remove the shim files as well.
$baseErlangPath = "$env:ProgramFiles/erl$erl_version/erts-$erl_version/bin"
Remove-BinFile "erl" -path "$baseErlangPath/erl.exe"
Remove-BinFile "werl" -path "$baseErlangPath/werl.exe"
Remove-BinFile "erlc" -path "$baseErlangPath/erlc.exe"
Remove-BinFile "escript" -path "$baseErlangPath/escript.exe"
Remove-BinFile "dialyzer" -path "$baseErlangPath/dialyzer.exe"
Log in or click on link to see number of positives.
- erlang.22.3.nupkg (693816869ed2) - ## / 62
- otp_win64_22.3.exe (f6444c1229d0) - ## / 58
- otp_win32_22.3.exe (8878aea69f59) - ## / 62
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Erlang 22.3 | 35163 | Wednesday, May 6, 2020 | Approved |
Erlang 22.1 | 20147 | Friday, November 1, 2019 | Approved |
Erlang 22.0 | 16340 | Thursday, May 30, 2019 | Approved |
Erlang 21.2 | 13264 | Thursday, January 17, 2019 | Approved |
Erlang 21.0.1.20180701 | 9859 | Monday, July 2, 2018 | Approved |
Erlang 21.0.1 | 542 | Thursday, June 28, 2018 | Approved |
Erlang 21.0 | 1445 | Tuesday, June 19, 2018 | Approved |
Erlang 20.3 | 18418 | Wednesday, March 14, 2018 | Approved |
Erlang 20.2 | 4869 | Wednesday, January 10, 2018 | Approved |
Erlang 20.1 | 2024 | Wednesday, December 6, 2017 | Approved |
Erlang 20.0 | 7516 | Tuesday, August 15, 2017 | Approved |
Erlang 19.3 | 4620 | Friday, June 2, 2017 | Approved |
Erlang 19.2 | 6057 | Thursday, February 2, 2017 | Approved |
Erlang 19.1 | 5583 | Friday, September 23, 2016 | Approved |
Erlang 19.0.20160907 | 610 | Wednesday, September 21, 2016 | Approved |
Erlang 19.0 | 2737 | Wednesday, June 22, 2016 | Approved |
Erlang 18.3 | 2372 | Wednesday, March 16, 2016 | Approved |
Erlang 18.2.1 | 4231 | Monday, December 28, 2015 | Approved |
Erlang 18.1 | 2009 | Thursday, September 24, 2015 | Approved |
Erlang 18.0.20150709.2 | 2008 | Thursday, July 9, 2015 | Approved |
Erlang 18.0.20150709 | 302 | Thursday, July 9, 2015 | Approved |
Erlang 18.0.0 | 784 | Wednesday, June 24, 2015 | Approved |
Erlang 17.5.0 | 1559 | Monday, April 13, 2015 | Approved |
Erlang 17.4.0 | 1008 | Monday, February 16, 2015 | Approved |
Erlang 17.3.0 | 1348 | Wednesday, September 17, 2014 | Approved |
Erlang 17.1.0 | 1594 | Monday, July 7, 2014 | Approved |
Erlang 17.0.0 | 859 | Thursday, April 10, 2014 | Approved |
Erlang 15.3.1 | 3789 | Tuesday, January 29, 2013 | Approved |
Erlang 15.1 | 533 | Wednesday, May 2, 2012 | Approved |
erlang.org
This package has no dependencies.
Ground Rules:
- This discussion is only about Erlang and the Erlang package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Erlang, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.