安装最新的 git 版本的 holoviews、hvplot、panel、datashader 和 param

Install the latest git versions of holoviews, hvplot, panel, datashader and param

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

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

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

全息视图:

pip install git+https://github.com/holoviz/holoviews.git


Hvplot:

pip install git+https://github.com/holoviz/hvplot.git


面板:

pip install git+https://github.com/holoviz/panel.git


数据着色器:

pip install git+https://github.com/holoviz/datashader.git


参数:

pip install git+https://github.com/holoviz/param.git



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

jupyter labextension install @pyviz/jupyterlab_pyviz

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 库主页上的 "Fork") , 然后克隆你的叉子,然后用你的编辑做一个 PR。