open: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'))

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
pip install jupyterlab
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')

  • open/choco.txt
  • 마지막으로 수정됨: 2022/02/20 13:58
  • 저자 127.0.0.1