-
-
Save seungwoonlee/ce742238865aaff0af286cdd95d59caa to your computer and use it in GitHub Desktop.
chocolatey 로 패키지 설치
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO ON | |
REM install choco | |
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin | |
REM utility | |
choco install chocolatey-core.extension -y | |
choco install 7zip -y | |
choco install sysinternals -y | |
choco install procexp -y | |
REM editor | |
choco install vim -y | |
choco install ctags -y | |
REM network-util | |
choco install curl -y | |
choco install putty -y | |
choco install filezilla -y | |
REM develop package | |
choco install git -y | |
choco install nodejs -y | |
choco install gulp-cli -y | |
choco install python -y | |
choco install ruby -y | |
choco install heidisql -y | |
choco install php -y | |
REM choco install php --version 7.0.23 -y | |
choco install mysql -y | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment