0

Holoviz 生态系统的库会不断更新。

使用 pip,我如何安装最新的 git 版本:

  • 全息视图
  • 高压图
  • 控制板
  • 数据着色器
  • 参数
4

2 回答 2

1

可以按如下方式安装最新的 github 版本的 holoviz 库。

全息视图:

点安装 git+ https://github.com/holoviz/holoviews.git


高压图:

点安装 git+ https://github.com/holoviz/hvplot.git


控制板:

点安装 git+ https://github.com/holoviz/panel.git


数据着色器:

点安装 git+ https://github.com/holoviz/datashader.git


参数:

点安装 git+ https://github.com/holoviz/param.git



请注意,要在 jupyter lab 中显示绘图,您将需要 pyviz jupyter lab 扩展:

jupyter labextension 安装@pyviz/jupyterlab_pyviz

于 2019-12-16T20:19:01.357 回答
1

Sander 的pip install git建议很简单,如果您只想获取最新版本而不进行编辑,那么它是合适的。但是,如果您还想进行任何本地更改,那么您可以这样做:

conda install --no-deps datashader
git clone https://github.com/holoviz/datashader.git
cd datashader
pip install --no-deps -e .
cd ..

(对于其他每个库也是如此)。如果您进一步想将任何本地更改贡献回库存储库,您首先需要将库分叉到您自己的帐户中(单击库的 github 主页上的“分叉”),然后克隆您的分叉,然后使用您的编辑进行 PR。

于 2019-12-16T22:15:18.323 回答