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:
57,581
Downloads of v 1.3.0:
248
Last Update:
21 Jun 2016
Package Maintainer(s):
Software Author(s):
- Jose Valim
Tags:
admin erlang concurrent programming language sdk otp elixir ruby
Elixir
This is not the latest version of Elixir available.
Downloads:
57,581
Downloads of v 1.3.0:
248
Maintainer(s):
Software Author(s):
- Jose Valim
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.
Elixir 1.3.0
This is not the latest version of Elixir available.
All Checks are Passing
2 Passing Test
To install Elixir, run the following command from the command line or from PowerShell:
To upgrade Elixir, run the following command from the command line or from PowerShell:
To uninstall Elixir, 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 elixir --internalize --version=1.3.0 --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 elixir -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 elixir -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 elixir installed
win_chocolatey:
name: elixir
state: present
version: 1.3.0
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 'elixir' do
action :install
version '1.3.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: elixir,
Version: 1.3.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller elixir
{
Name = 'elixir'
Ensure = 'Present'
Version = '1.3.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'elixir':
provider => 'chocolatey',
ensure => '1.3.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install elixir version="1.3.0" 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 21 Jun 2016.
Elixir is a functional meta-programming aware language built on top of the Erlang VM. It is a dynamic language with flexible syntax with macros support that leverages Erlang's abilities to build concurrent, distributed, fault-tolerant applications with hot code upgrades.
Elixir also provides first-class support for pattern matching, polymorphism via protocols (similar to Clojure's), aliases and associative data structures (usually known as dicts or hashes in other programming languages).
Finally, Elixir and Erlang share the same bytecode and data types. This means you can invoke Erlang code from Elixir (and vice-versa) without any conversion or performance hit. This allows a developer to mix the expressiveness of Elixir with the robustness and performance of Erlang.
$package = 'Elixir'
$version = '1.3.0'
$params = @{
PackageName = $package;
FileType = 'zip';
Url = "https://github.com/elixir-lang/elixir/releases/download/v$version/Precompiled.zip";
UnzipLocation = $env:chocolateyPackageFolder;
}
if (!(Test-Path($params.UnzipLocation)))
{
New-Item $params.UnzipLocation -Type Directory | Out-Null
}
Install-ChocolateyZipPackage @params
$elixirPath = "$env:ChocolateyPackageFolder/bin"
if (![System.IO.Directory]::Exists($elixirPath)) {$elixirPath = "$env:ChocolateyPackageFolder/bin";}
Install-ChocolateyEnvironmentVariable "Path" "$($env:Path);$elixirPath" Machine
Update-SessionEnvironment
Write-Host @'
The Elixir commands have been added to your path.
Please restart your current shell session to access Elixir commands:
elixir
elixirc
mix
iex.bat
'@
$package = 'Elixir'
Uninstall-ChocolateyZipPackage $packageName $package $zipFileName 'Precompiled.zip'
#And insure we remove the shortcuts to the batch files as well
#This is solely present for prior versions of the Elixir CNG package.
Remove-Item "$env:ChocolateyInstall/bin/iex.bat"
Remove-Item "$env:ChocolateyInstall/bin/elixir.bat"
Remove-Item "$env:ChocolateyInstall/bin/elixirc.bat"
Remove-Item "$env:ChocolateyInstall/bin/mix.bat"
- Elixir.1.3.0.nupkg (348d9c0c729f) - ## / 56 - Log in or click on link to see number of positives
- Precompiled.zip (cdca6cf6355e) - ## / 55 - Log in or click on link to see number of positives
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 |
---|---|---|---|
Elixir 1.9.4 | 759 | Wednesday, November 6, 2019 | Approved |
Elixir 1.9.4-otp22 | 10 | Saturday, November 9, 2019 | Approved |
Elixir 1.9.2 | 385 | Tuesday, October 29, 2019 | Approved |
Elixir 1.9.1 | 2001 | Monday, July 29, 2019 | Approved |
Elixir 1.9.0 | 637 | Wednesday, July 10, 2019 | Approved |
Elixir 1.8.2 | 1011 | Thursday, May 30, 2019 | Approved |
Elixir 1.8.1 | 1099 | Tuesday, April 16, 2019 | Approved |
Elixir 1.8.0 | 2123 | Thursday, January 17, 2019 | Approved |
Elixir 1.7.4 | 1701 | Wednesday, November 7, 2018 | Approved |
Elixir 1.7.3 | 169 | Tuesday, November 6, 2018 | Approved |
Elixir 1.7.2 | 302 | Monday, November 5, 2018 | Approved |
Elixir 1.7.1 | 2720 | Friday, August 3, 2018 | Approved |
Elixir 1.6.6 | 2135 | Friday, June 22, 2018 | Approved |
Elixir 1.6.5 | 2421 | Tuesday, May 8, 2018 | Approved |
Elixir 1.6.4 | 2210 | Friday, March 16, 2018 | Approved |
Elixir 1.6.3 | 475 | Friday, March 9, 2018 | Approved |
Elixir 1.6.2 | 459 | Thursday, March 1, 2018 | Approved |
Elixir 1.6.1 | 494 | Tuesday, February 20, 2018 | Approved |
Elixir 1.6.0 | 2111 | Thursday, January 18, 2018 | Approved |
Elixir 1.6.0-rc1 | 871 | Thursday, January 11, 2018 | Approved |
Elixir 1.5.3 | 563 | Tuesday, January 9, 2018 | Approved |
Elixir 1.5.2 | 2000 | Sunday, October 22, 2017 | Approved |
Elixir 1.5.1 | 1799 | Wednesday, August 16, 2017 | Approved |
Elixir 1.5.0 | 693 | Thursday, August 3, 2017 | Approved |
Elixir 1.4.4 | 1402 | Friday, June 2, 2017 | Approved |
Elixir 1.4.2 | 2228 | Wednesday, February 22, 2017 | Approved |
Elixir 1.4.1 | 452 | Monday, February 13, 2017 | Approved |
Elixir 1.4.0 | 862 | Friday, January 13, 2017 | Approved |
Elixir 1.3.4 | 1635 | Tuesday, October 11, 2016 | Approved |
Elixir 1.3.3 | 609 | Monday, October 3, 2016 | Approved |
Elixir 1.3.2 | 580 | Friday, September 23, 2016 | Approved |
Elixir 1.3.1 | 1037 | Wednesday, June 29, 2016 | Approved |
Elixir 1.3.0 | 248 | Tuesday, June 21, 2016 | Approved |
Elixir 1.2.6 | 328 | Monday, June 6, 2016 | Approved |
Elixir 1.2.5 | 296 | Tuesday, May 3, 2016 | Approved |
Elixir 1.2.4 | 687 | Friday, April 1, 2016 | Approved |
Elixir 1.2.3.03182016 | 460 | Friday, March 18, 2016 | Approved |
Elixir 1.2.3 | 786 | Monday, February 22, 2016 | Approved |
Elixir 1.2.2 | 475 | Tuesday, February 9, 2016 | Approved |
Elixir 1.2.1 | 503 | Wednesday, January 20, 2016 | Approved |
Elixir 1.2.0 | 546 | Sunday, January 3, 2016 | Approved |
Elixir 1.1.1 | 946 | Wednesday, October 7, 2015 | Approved |
Elixir 1.1.0 | 333 | Wednesday, October 7, 2015 | Approved |
Elixir 1.1.0-rc0 | 341 | Wednesday, September 16, 2015 | Approved |
Elixir 1.1.0-beta | 409 | Wednesday, September 9, 2015 | Approved |
Elixir 1.0.5.20150710 | 848 | Thursday, July 9, 2015 | Approved |
Elixir 1.0.5.20150709 | 299 | Thursday, July 9, 2015 | Approved |
Elixir 1.0.5 | 430 | Monday, June 29, 2015 | Approved |
Elixir 1.0.4 | 647 | Monday, April 13, 2015 | Approved |
Elixir 1.0.3 | 484 | Monday, February 16, 2015 | Approved |
Elixir 1.0.2 | 972 | Monday, October 27, 2014 | Approved |
Elixir 1.0.1 | 456 | Tuesday, October 7, 2014 | Approved |
Elixir 1.0.0 | 495 | Wednesday, September 10, 2014 | Approved |
Elixir 1.0.0-rc1 | 357 | Tuesday, September 2, 2014 | Approved |
Elixir 0.15.1 | 412 | Monday, August 11, 2014 | Approved |
Elixir 0.15.0.20140805 | 343 | Tuesday, August 5, 2014 | Approved |
Elixir 0.15.0 | 315 | Monday, August 4, 2014 | Approved |
Elixir 0.14.3 | 430 | Monday, July 14, 2014 | Approved |
Elixir 0.14.2.20140728 | 322 | Monday, July 28, 2014 | Approved |
Elixir 0.14.2 | 410 | Monday, July 7, 2014 | Approved |
Elixir 0.14.1.20140728 | 309 | Monday, July 28, 2014 | Approved |
Elixir 0.14.1 | 412 | Wednesday, June 18, 2014 | Approved |
Elixir 0.14.0.20140728 | 366 | Monday, July 28, 2014 | Approved |
Elixir 0.14.0 | 397 | Monday, June 9, 2014 | Approved |
Elixir 0.13.3.20140728 | 326 | Monday, July 28, 2014 | Approved |
Elixir 0.13.3 | 404 | Tuesday, May 27, 2014 | Approved |
Elixir 0.13.2.20140728 | 343 | Monday, July 28, 2014 | Approved |
Elixir 0.13.2 | 389 | Monday, May 12, 2014 | Approved |
Elixir 0.13.1.20140728 | 339 | Monday, July 28, 2014 | Approved |
Elixir 0.13.1 | 384 | Monday, April 28, 2014 | Approved |
Elixir 0.13.0.20140728 | 278 | Monday, July 28, 2014 | Approved |
Elixir 0.13.0 | 391 | Monday, April 21, 2014 | Approved |
Elixir 0.12.5 | 467 | Monday, April 7, 2014 | Approved |
Elixir 0.12.0 | 571 | Friday, January 3, 2014 | Approved |
Elixir 0.10.0 | 674 | Wednesday, July 17, 2013 | Approved |
-
- erlang (≥ 18.0.20150709.2)
Ground Rules:
- This discussion is only about Elixir and the Elixir 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 Elixir, 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.