-
Notifications
You must be signed in to change notification settings - Fork 108
Closed
Labels
area: quartoIssues related to Quarto category.Issues related to Quarto category.area: reticulateIssues related to the reticulate extensionIssues related to the reticulate extensionbugSomething isn't workingSomething isn't workingsupport
Milestone
Description
Positron Version:
Positron Version: 2024.06.1 (Universal) build 54
Code - OSS Version: 1.90.0
Commit: 5115c73
Date: 2024-07-03T03:51:33.756Z
Electron: 29.4.0
Chromium: 122.0.6261.156
Node.js: 20.9.0
V8: 12.2.281.27-electron.0
OS: Darwin arm64 23.5.0
Steps to reproduce the issue:
- Create a new Quarto Document in a Positron session with both a Python environment & R environment activate
- Inside the Quarto document, place:
---
format: html
---
```{r}
plot(1:4, ylab = "some numbers")
```
```{python}
import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4])
plt.ylabel('some numbers')
plt.show()
```
- Run each chunk individually.
- The Python chunk creates a pop-up window under Ark.
What did you expect to happen?
I expected:
- the plot window to catch
- reticulate plugin to default to the active python environment without needing to setup a default python environment
Unexpected plot pop-up:

Expected plot history:

Were there any error messages in the output or Developer Tools console?
N/A
Metadata
Metadata
Assignees
Labels
area: quartoIssues related to Quarto category.Issues related to Quarto category.area: reticulateIssues related to the reticulate extensionIssues related to the reticulate extensionbugSomething isn't workingSomething isn't workingsupport