In a notebook like this:
---
title: "R Notebook"
output: html_notebook
---
```{r}
library(reticulate)
use_python("/Users/danielfrg/workspace/dinero/.venv/bin/python")
```
```{python}
import pandas
```
Gives me:
Evaluation error: option error has NULL value.
Doing it in the R session would give me the error I would be expecting.
> pd <- import("pandas")
Error in py_module_import(module, convert = convert) :
ImportError: No module named pandas
The same thing happens for other Python errors on the notebook cells. Not sure if this is config on my side.
Getting the same issues on my end as well
Also have the same issue
I'm getting this issue as well, but only when I'm working in an RStudio project. The exact same code works fine when I'm working outside a project.
Should be fixed in the preview release.
Check your rstudio version , library reticulate works fine in the version 1.2.1555.1
Most helpful comment
Should be fixed in the preview release.