When using my terminal of MacOS from RStudio I got (r-reticulate) all the time. How can I avoid this behavior?
For example:
(r-reticulate) MacStudio-de-Manuel:R_macroecologia manuelspinola$
When using my terminal of MacOS from RStudio I got (r-reticulate) all the time. How can I avoid this behavior?
For example:
(r-reticulate) MacStudio-de-Manuel:R_macroecologia manuelspinola$
I suspect some package installed r-reticulate, and now that prompt shows up. Here's how I got rid of it:
r-reticulate
, so I just made sure I was in my home directory, and deleted the junk one: "rm -rf .virtualenvs/r-reticulate/bin".reticulate
package in R: remove.packages("reticulate")
.I haven't had a long time to test this, so I don't know if I've broken anything.
Thank you very much.