'Downloading Fonts in R: 'No fontName. Skipping'
I'm trying to download Calibri font. R version 4.1.3 (2022-03-10).
I've tried:
library(extrafont)
font_import(paths='C:/Windows/Fonts', prompt=FALSE)
I've also tried:
library(extrafont)
library(remotes)
remotes::install_version("Rttf2pt1", version = "1.3.8")
extrafont::font_import()
Both give me these errors like this:
Solution 1:[1]
Using the following code worked when I downloaded Rtools40.
library(extrafont)
library(remotes)
remotes::install_version("Rttf2pt1", version = "1.3.8")
extrafont::font_import()
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Melanie Baker |

