File tree Expand file tree Collapse file tree 3 files changed +26
-2
lines changed
Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 11Package: parallelly
2- Version: 1.46.1-9002
2+ Version: 1.46.1-9003
33Title: Enhancing the 'parallel' Package
44Imports:
55 parallel,
Original file line number Diff line number Diff line change @@ -134,6 +134,7 @@ nproc
134134ntasks
135135parallelization
136136parallelly
137+ parsers
137138pc
138139pid
139140plink
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ only on MS Windows.
1818The below instructions assume that you already have Wine installed.
1919
2020
21- ## Install R for MS Windows 10
21+ ## Install R for MS Windows 11
2222
2323To install R for MS Windows in Wine, first configure Wine to use
2424Windows 11;
@@ -73,6 +73,8 @@ print(cl)
7373
7474# Appendix
7575
76+ ## Wine and R warnings
77+
7678It might be that Wine produces warnings like:
7779
7880``` plain
@@ -91,5 +93,26 @@ These are typically harmless. Environment variable setting
9193` LC_ALL=en_US.UTF-8 ` the second one.
9294
9395
96+ ## Windows-only CRAN packages
97+
98+ A small number of the CRAN packages install only on MS Windows. Here
99+ is how to see which are:
100+
101+ ``` r
102+ db <- read.dcf(url(" https://cran.r-project.org/src/contrib/PACKAGES" ))
103+ db <- as.data.frame(db )
104+ win_only <- subset(db , OS_type == " windows" )
105+ print(win_only $ Package )
106+ ```
107+
108+ As of 2026-01-21, this outputs:
109+
110+ ``` r
111+ [1 ] " BiplotGUI" " blatr" " excel.link"
112+ [4 ] " KeyboardSimulator" " MDSGUI" " MediaNews"
113+ [7 ] " R2PPT" " R2wd" " rFUSION"
114+ [10 ] " RWinEdt" " spectrino" " taskscheduleR"
115+ ```
116+
94117[ R for Windows ] : https://cran.r-project.org/bin/windows/base/
95118[ Winetricks ] : https://github.com/Winetricks/winetricks
You can’t perform that action at this time.
0 commit comments