You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, edit_r_profile() and edit_r_environ() always try to create/edit a file directly on the user's home directory regardless of R_PROFILE_USER and R_ENVIRON_USER.
Sys.setenv(R_PROFILE_USER="/tmp/path/to/.Rprofile")
Sys.getenv('R_PROFILE_USER')
#> [1] "/tmp/path/to/.Rprofile"usethis::edit_r_profile()
#> ● Edit /Users/watal/.Rprofile#> ● Restart R for changes to take effect
The text was updated successfully, but these errors were encountered:
Currently,
edit_r_profile()
andedit_r_environ()
always try to create/edit a file directly on the user's home directory regardless ofR_PROFILE_USER
andR_ENVIRON_USER
.The text was updated successfully, but these errors were encountered: