Add RStudio

This commit is contained in:
Timotej Lazar 2022-09-15 13:24:00 +00:00
parent 43a457a2ed
commit 99e10f5bf1
3 changed files with 20 additions and 1 deletions

View file

@ -15,6 +15,7 @@
- Orange
- Pelles C for Windows
- Python (latest)
- RStudio
- SWI-Prolog
- Thonny
- VirtualBox
@ -56,7 +57,6 @@
- IAR Embedded Workbench for ARM
- LTspice IV
- Microsoft Visual Studio Code
- RStudio
- SafeExamBrowser
- Scala Programming Language Distribution
- VMware Workstation

View file

@ -13,6 +13,7 @@
- import_tasks: pelles-c.yml
- import_tasks: processing.yml
- import_tasks: python.yml
- import_tasks: rstudio.yml
- import_tasks: swi-prolog.yml
- import_tasks: thonny.yml
- import_tasks: virtualbox.yml

View file

@ -0,0 +1,18 @@
- name: Install R.Studio
win_chocolatey:
name: r.project, r.studio
- name: Create configuration directory
win_file:
path: "%PROGRAMDATA%\\RStudio"
state: directory
- name: Disable crash reporting
win_copy:
dest: "%PROGRAMDATA%\\RStudio\\crash-handler.conf"
content: crash-handling-enabled=0
- name: Disable update notifications
win_copy:
dest: "%PROGRAMDATA%\\RStudio\\rstudio-prefs.json"
content: { "check_for_updates": false }