Nimble tweak to use specific python version or virtual environment in RStudio
[This article was first published on Coastal Econometrician Views, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Reticulate made switch between R & Python easy, and doing its best to facilitate both worlds of data science.
Meanwhile, I noticed that most of my followers or students raised the issues of uneasy switch between
Here is my nimble tweak, hope, RStudio will come up with a better solution in coming days as in Spyder’s (pointing to interpreter).
As, most of us use, Rprofile.site which will be available in ~/R/etc folder for setting R environment variables,
exploit the same for setting needed python version or virtual environment:
# python version
Sys.setenv(RETICULATE_PYTHON = “~/python37/python.exe”)
# python virtual environment
Sys.setenv(RETICULATE_PYTHON = “~/envs/stan_env/python.exe”)
Currently, commenting and un-commenting needed version in Rprofile.site, and restarting session
seems to be not a bad nimble tweak for bringing up needed python environment in RStudio.
To leave a comment for the author, please follow the link and comment on their blog: Coastal Econometrician Views.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.