# Choco ## choco 설치 - https://chocolatey.org/install 에서 cmd @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" powershell Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) ## install by choco ``` choco feature enable -n allowGlobalConfirmation choco install googlechrome choco install vscode choco install git choco install wox choco install strokesplus.install choco install autohotkey choco install nodejs choco install conemu ``` ``` choco install r choco install r.studio choco install jdk8 ``` ## 실행 - [[autohotkey]] - [[jupyter lab]] - [[r studio]] ## AHK 실행 https://github.com/jacegem/ahk_script/releases 에서 다운 받아 실행 ## jupyter lab 설치 ``` pip install jupyterlab ``` ## R studio 에서 실행 ```shell install.packages(c('rzmq','repr','IRkernel','IRdisplay'), repos = c('http://irkernel.github.io/', getOption('repos'))) ``` ```shell install.packages('devtools') devtools::install_github('IRkernel/IRkernel') # or devtools::install_local('IRkernel-master.tar.gz') IRkernel::installspec() # to register the kernel in the current R installation ``` R 버전 확인 ```shell > package_version(R.version) [1] ‘3.4.2’ ``` ```shell # in R 3.5 IRkernel::installspec(name = 'ir35', displayname = 'R 3.5') ```