https://github.com/aminya/chocolatey-emscripten
Chocolatey package for emscripten
https://github.com/aminya/chocolatey-emscripten
choco chocolatey emscripten emsdk install package windows
Last synced: about 2 months ago
JSON representation
Chocolatey package for emscripten
- Host: GitHub
- URL: https://github.com/aminya/chocolatey-emscripten
- Owner: aminya
- License: mit
- Created: 2020-09-14T07:49:42.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-31T21:35:33.000Z (about 3 years ago)
- Last Synced: 2025-04-04T20:46:11.811Z (about 1 year ago)
- Topics: choco, chocolatey, emscripten, emsdk, install, package, windows
- Language: PowerShell
- Homepage: https://chocolatey.org/packages/emscripten/
- Size: 30.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chocolatey-emscripten
Chocolatey package for emscripten
## Install
Install chocolatey from [here](https://chocolatey.org/install) then:
```ps1
choco install emscripten
```
**Note**: The compiler is installed in "$env:LocalAppData\emsdk".
# Uninstall
```ps1
choco uninstall emscripten
```
**Note**: The compiler is removed from "$env:LocalAppData\emsdk".
# Install without chocolatey
You should have git installed. These scripts all run in PowerShell.
1) Clone this repository:
```ps1
git clone https://github.com/aminya/chocolatey-emscripten.git
cd chocolatey-emscripten\tools
```
2) run `chocolateyInstall`
```ps1
.\chocolateyInstall.ps1
```
This installs the `latest` version. If you want to install a certain version first set `emsdkVersion` environment variable and then run install:
```ps1
$emsdkVersion="3.1.40"
.\chocolateyInstall.ps1
```
# Upgrade without chocolatey
run `chocolateyUpgrade`
```ps1
.\chocolateyUpgrade.ps1
```
This upgrades to the `latest` version. If you want to upgrade to a certain version first set `emsdkVersion` environment variable and then run upgrade:
```ps1
$emsdkVersion="3.1.40"
.\chocolateyUpgrade.ps1
```
# Uninstall without chocolatey
```ps1
.\chocolateyUninstall.ps1
```