목차

Choco

choco 설치

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

실행

AHK 실행

https://github.com/jacegem/ahk_script/releases 에서 다운 받아 실행

jupyter lab 설치

pip install jupyterlab

R studio 에서 실행

snippet.shell
install.packages(c('rzmq','repr','IRkernel','IRdisplay'),
repos = c('http://irkernel.github.io/', getOption('repos')))
snippet.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 버전 확인

snippet.shell
> package_version(R.version)
[1] ‘3.4.2’
snippet.shell
# in R 3.5
IRkernel::installspec(name = 'ir35', displayname = 'R 3.5')

관련 문서