0

我使用此处找到的说明安装了 Voila 。

我刚刚运行了命令:

pip install voila 

然后我做了一个 git clone:

git clone https://github.com/voila-dashboards/voila

完成后,我尝试运行以下示例:

cd voila
voila notebooks/bqplot.ipynb

我收到一条错误消息:

No template sub-directory with name 'base' found in the following paths:

我相信我已经查明了这个错误的来源:

第 91 行在这里

相关的代码片段是:

if not found_at_least_one:
        paths = "\n\t".join(full_paths)
        raise ValueError(
            'No template sub-directory with name %r found in the following paths:\n\t%s' % (template_name, paths)
        )

但我不清楚为什么它无法找到至少一个模板路径。

4

0 回答 0