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...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
3,925
Downloads of v 12.20.2:
14
Last Update:
15 Apr 2021
Package Maintainer(s):
Software Author(s):
- Botpress
- Inc.
Tags:
botpress chat bot- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Botpress
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
3,925
Downloads of v 12.20.2:
14
Maintainer(s):
Software Author(s):
- Botpress
- Inc.
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 Botpress, run the following command from the command line or from PowerShell:
To upgrade Botpress, run the following command from the command line or from PowerShell:
To uninstall Botpress, 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://community.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 botpress --internalize --source=https://community.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://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade botpress -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 botpress -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 botpress installed
win_chocolatey:
name: botpress
state: present
version: 12.20.2
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'botpress' do
action :install
version '12.20.2'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: botpress,
Version: 12.20.2,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller botpress
{
Name = 'botpress'
Ensure = 'Present'
Version = '12.20.2'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'botpress':
provider => 'chocolatey',
ensure => '12.20.2',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install botpress version="12.20.2" 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...
There are versions of this package awaiting moderation . See the Version History section below.
This package was approved as a trusted package on 15 Apr 2021.
Use the most sophisticated and flexible conversational flow management system on the market.
Features
NLU
Natural Language Understanding.
Deeply understand the meaning and intents behind every messages.
Analytics
See how your bot is being used.
Quickly and progressively iterate to make your bot smarter every day.
Multi-channel
Instantly deliver your bot on all the major messaging channels. We support Messenger, Skype, SMS, Webchat and many more.
Authoring UI
Ships with a graphical interface.
Non-developers can manage the bot post-deployment.
SDK & APIs
Infinitely extensible and customizable.
We make it really easy to integrate with 3rd-party applications and APIs.
# Close botpress
$botpress = Get-Process bp -ErrorAction SilentlyContinue
if ($botpress) { $botpress | Stop-Process }
$ErrorActionPreference = 'Stop';
# Install botpress to its own directory, not in the chocolatey lib folder
# If requesting per user install use $env:APPDATA else $env:ProgramData
$botpressDir = Join-Path $env:ProgramData $env:ChocolateyPackageName
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $botpressDir
url = 'https://s3.amazonaws.com/botpress-binaries/botpress-v12_20_2-win-x64.zip'
checksum = '3099bffdced0308e81808af4e58d707131056c61786cf0092d6c3683d9e89139'
checksumType = 'sha256'
}
Install-ChocolateyZipPackage @packageArgs
# Install start menu shortcut
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$shortcutFilePath = Join-Path $programs "Botpress.lnk"
$targetPath = Join-Path $botpressDir "bp.exe"
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePath -targetPath $targetPath
$botpressDir = Join-Path $env:ProgramData $env:ChocolateyPackageName
$zipFileName = "botpress-v12_20_2-win-x64.zip"
Uninstall-ChocolateyZipPackage $packageName $zipFileName
# If uninstalling and not just upgrading
# we will remove all node versions that were installed
# and therefore any globally installed modules
if (Test-Path $botpressDir) { Get-ChildItem $botpressDir -Exclude data | Remove-Item -Recurse -Force }
# Delete start menu shortcut
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$shortcutFilePath = Join-Path $programs "Botpress.lnk"
if(Test-Path $shortcutFilePath) { Remove-Item $shortcutFilePath }
Log in or click on link to see number of positives.
- botpress.12.20.2.nupkg (172e542c5f48) - ## / 61
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 |
---|---|---|---|
Botpress 12.20.2 | 14 | Thursday, April 15, 2021 | Approved |
Botpress 12.20.1 | 14 | Friday, April 2, 2021 | Approved |
Botpress 12.20.0 | 1 | Wednesday, March 31, 2021 |
Waiting for Maintainer
|
Botpress 12.19.2 | 38 | Monday, March 22, 2021 | Approved |
Botpress 12.19.1 | 18 | Friday, March 19, 2021 | Approved |
Botpress 12.19.0 | 27 | Monday, March 15, 2021 | Approved |
Botpress 12.18.2 | 31 | Saturday, March 6, 2021 | Approved |
Botpress 12.18.1 | 24 | Friday, March 5, 2021 | Approved |
Botpress 12.18.0 | 16 | Friday, February 26, 2021 | Approved |
Botpress 12.17.2 | 13 | Friday, February 19, 2021 | Approved |
Botpress 12.17.1 | 23 | Tuesday, February 9, 2021 | Approved |
Botpress 12.17.0 | 15 | Friday, January 29, 2021 | Approved |
Botpress 12.16.3 | 22 | Friday, January 22, 2021 | Approved |
Botpress 12.16.2 | 30 | Tuesday, January 12, 2021 | Approved |
Botpress 12.16.1 | 21 | Monday, January 11, 2021 | Approved |
Botpress 12.16.0 | 12 | Saturday, January 9, 2021 | Approved |
Botpress 12.15.2 | 34 | Wednesday, December 16, 2020 | Approved |
Botpress 12.15.1 | 20 | Thursday, December 10, 2020 | Approved |
Botpress 12.15.0 | 24 | Tuesday, December 8, 2020 | Approved |
Botpress 12.14.2 | 18 | Friday, December 4, 2020 | Approved |
Botpress 12.14.1 | 19 | Wednesday, December 2, 2020 | Approved |
Botpress 12.14.0 | 16 | Monday, November 30, 2020 | Approved |
Botpress 12.13.2 | 23 | Wednesday, November 25, 2020 | Approved |
Botpress 12.13.1 | 22 | Friday, November 20, 2020 | Approved |
Botpress 12.13.0 | 19 | Wednesday, November 18, 2020 | Approved |
Botpress 12.12.1 | 21 | Wednesday, November 11, 2020 | Approved |
Botpress 12.12.0 | 25 | Friday, November 6, 2020 | Approved |
Botpress 12.11.0 | 21 | Saturday, October 31, 2020 | Approved |
Botpress 12.10.10 | 22 | Tuesday, October 27, 2020 | Approved |
Botpress 12.10.9 | 22 | Tuesday, October 20, 2020 | Approved |
Botpress 12.10.8 | 38 | Wednesday, October 7, 2020 | Approved |
Botpress 12.10.7 | 28 | Saturday, September 12, 2020 | Approved |
Botpress 12.10.6 | 45 | Wednesday, August 26, 2020 | Approved |
Botpress 12.10.5 | 40 | Thursday, August 6, 2020 | Approved |
Botpress 12.10.2 | 45 | Friday, June 26, 2020 | Approved |
Botpress 12.10.1 | 38 | Wednesday, June 17, 2020 | Approved |
Botpress 12.10.0 | 21 | Tuesday, June 16, 2020 | Approved |
Botpress 12.9.3 | 39 | Friday, May 22, 2020 | Approved |
Botpress 12.9.2 | 39 | Friday, May 15, 2020 | Approved |
Botpress 12.9.1 | 60 | Friday, May 1, 2020 | Approved |
Botpress 12.9.0 | 53 | Tuesday, April 28, 2020 | Approved |
Botpress 12.8.6 | 51 | Sunday, April 26, 2020 | Approved |
Botpress 12.8.5 | 43 | Thursday, April 23, 2020 | Approved |
Botpress 12.8.4 | 36 | Tuesday, April 21, 2020 | Approved |
Botpress 12.8.2 | 70 | Wednesday, April 8, 2020 | Approved |
Botpress 12.8.0 | 42 | Friday, April 3, 2020 | Approved |
Botpress 12.7.2 | 64 | Saturday, March 28, 2020 | Approved |
Botpress 12.7.1 | 56 | Monday, March 9, 2020 | Approved |
Botpress 12.7.0 | 85 | Thursday, March 5, 2020 | Approved |
Botpress 12.6.0 | 62 | Monday, February 24, 2020 | Approved |
Botpress 12.5.0 | 78 | Wednesday, February 5, 2020 | Approved |
Botpress 12.4.2 | 49 | Thursday, January 23, 2020 | Approved |
Botpress 12.4.1 | 43 | Tuesday, January 21, 2020 | Approved |
Botpress 12.4.0 | 54 | Friday, January 17, 2020 | Approved |
Botpress 12.3.1 | 48 | Wednesday, January 8, 2020 | Approved |
Botpress 12.3.0 | 48 | Thursday, December 12, 2019 | Approved |
Botpress 12.2.3 | 54 | Tuesday, November 19, 2019 | Approved |
Botpress 12.2.2 | 61 | Monday, November 11, 2019 | Approved |
Botpress 12.2.1 | 55 | Thursday, November 7, 2019 | Approved |
Botpress 12.2.0 | 55 | Tuesday, October 29, 2019 | Approved |
Botpress 12.1.6 | 66 | Saturday, October 5, 2019 | Approved |
Botpress 12.1.5 | 66 | Tuesday, October 1, 2019 | Approved |
Botpress 12.1.4 | 67 | Thursday, September 19, 2019 | Approved |
Botpress 12.1.3 | 62 | Tuesday, September 10, 2019 | Approved |
Botpress 12.1.1 | 63 | Wednesday, August 28, 2019 | Approved |
Botpress 12.1.0 | 64 | Wednesday, August 14, 2019 | Approved |
Botpress 12.0.7 | 54 | Tuesday, August 6, 2019 | Approved |
Botpress 12.0.5 | 65 | Thursday, August 1, 2019 | Approved |
Botpress 12.0.4 | 61 | Wednesday, July 31, 2019 | Approved |
Botpress 12.0.2 | 65 | Wednesday, July 17, 2019 | Approved |
Botpress 12.0.0 | 57 | Wednesday, July 3, 2019 | Approved |
Botpress 11.9.6 | 59 | Tuesday, July 2, 2019 | Approved |
Botpress 11.9.5 | 77 | Saturday, June 22, 2019 | Approved |
Botpress 11.9.4 | 73 | Friday, June 14, 2019 | Approved |
Botpress 11.9.3 | 71 | Thursday, June 6, 2019 | Approved |
Botpress 11.9.1 | 71 | Friday, May 31, 2019 | Approved |
Botpress 11.9.0 | 81 | Wednesday, May 15, 2019 | Approved |
Botpress 11.8.4 | 80 | Wednesday, May 1, 2019 | Approved |
Botpress 11.8.3 | 86 | Saturday, April 27, 2019 | Approved |
Botpress 11.8.2 | 56 | Thursday, April 25, 2019 | Approved |
Botpress 11.8.1 | 70 | Wednesday, April 24, 2019 | Approved |
Botpress 11.8.0 | 79 | Friday, April 12, 2019 | Approved |
Botpress 11.7.4 | 70 | Monday, April 8, 2019 | Approved |
Botpress 11.7.2.20190404 | 74 | Thursday, April 4, 2019 | Approved |
Botpress 11.7.2 | 85 | Wednesday, April 3, 2019 | Approved |
Botpress 11.6.3 | 78 | Tuesday, April 2, 2019 | Approved |
Copyright © 2018 Botpress, Inc.
This package has no dependencies.
Ground Rules:
- This discussion is only about Botpress and the Botpress 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 Botpress, 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.