Line-by-line evaluation in reticulate

Hello,

When I try to do line-by-line evaluation in Python, it runs all the lines rather than one at a time like in R. Also, if you have eval=FALSE in a R chunk, you can still do line-by-line runs, but not in Python. Are these normal behaviors for reticulate + Rmarkdown, so I am doing something wrong?

Thanks!

```{r}
1+1

2+2
```

```{python}
1+1

2+2
```

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.