在 Windows 10 中使用 vscode 进行四开

问题描述 投票:0回答:1

渲染时,弹出错误:未找到四开本安装

但是当我使用 quarto 和 cli 时:

quarto render myfile.qmd
,成功

环境:

操作系统:Windows 10 Professional

quarto --version
:1.0.37

vscode 四开扩展:1.29.0

quarto check

[>] Checking Quarto installation......OK
      Version: 1.0.37
      Path: D:\Quarto\bin\
      CodePage: 936

[>] Checking basic markdown render....OK

[>] Checking Python 3 installation....OK
      Version: 3.9.12 (Conda)
      Path: D:/miniconda3/python.exe
      Jupyter: 4.9.2
      Kernels: julia-1.7, python3, ir

[>] Checking Jupyter engine render....OK

[>] Checking R installation...........OK
      Version: 4.2.1
      Path: d:/R
      LibPaths:
        - E:/rpkg
        - D:/R/library
      rmarkdown: 2.14

[>] Checking Knitr engine render......OK

vscode中Quarto扩展的路径设置:

D:/Quarto/bin/

在ubuntu操作系统中,我可以渲染成功

windows visual-studio-code quarto
1个回答
0
投票

标题:“四开本基础知识” 格式: html: 代码折叠:true jupyter:python3

有关极轴上线图的演示,请参阅@fig-polar。

#| label: fig-polar
#| fig-cap: "A line plot on a polar axis"

import numpy as np
import matplotlib.pyplot as plt

r = np.arange(0, 2, 0.01)
theta = 2 * np.pi * r
fig, ax = plt.subplots(
  subplot_kw = {'projection': 'polar'} 
)
ax.plot(theta, r)
ax.set_rticks([0.5, 1, 1.5, 2])
ax.grid(True)
plt.show()

我想要做什么:我想在 VS Code 中运行四开文档。我已经安装了 vs code 的 quarto 扩展(版本-v1.110.1),还安装了 Quarto CLI(v1.4.542)。

**问题:**当我运行 qmd 文件时,出现以下错误。

PS C:\Users\HP\Desktop rial> 四开预览 c:/Users/HP/Desktop/Trial/demo_1.qmd --no-browser --no-watch-inputs 错误:系统无法访问该文件。 (操作系统错误 1920):stat 'C:\Users\HP\AppData\Local\Microsoft\WindowsApps\python.exe'

堆栈跟踪: 在 Object.statSync (ext:eno_fs/30_fs.js:363:7) 在存在同步(文件:///C:/Program%20Files/Quarto/bin/quarto.js:495:27) 在 getQuartoJupyterCapabilities (file:///C:/Program%20Files/Quarto/bin/quarto.js:30574:13) 在 eventLoopTick (ext:core/01_core.js:183:11) 在异步 jupyterCapability (file:///C:/Program%20Files/Quarto/bin/quarto.js:30489:28) 在异步 pythonExec (file:///C:/Program%20Files/Quarto/bin/quarto.js:30669:18) 在异步 Object.execute (file:///C:/Program%20Files/Quarto/bin/quarto.js:38357:29) 在异步渲染执行(file:///C:/Program%20Files/Quarto/bin/quarto.js:76994:27) 在异步 renderFileInternal (file:///C:/Program%20Files/Quarto/bin/quarto.js:77176:43) 在异步 renderFiles (file:///C:/Program%20Files/Quarto/bin/quarto.js:77044:17) PS C:\Users\HP\Desktop rial>

我已经卸载并重新安装了几次,但它给了我同样的错误。

如何解决以下错误?有人可以帮我解决这些问题吗?

© www.soinside.com 2019 - 2024. All rights reserved.