Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update links and instructions in readme #6036

Merged
merged 2 commits into from
Dec 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,6 @@ jobs:
cache: true
playwright: true
id: install
- name: doit env_capture
run: |
conda activate test-environment
doit env_capture
- name: doit test_ui
if: needs.changes.outputs.code == 'true'
run: |
Expand Down Expand Up @@ -180,6 +176,7 @@ jobs:
# conda-update: true
# id: install
- uses: actions/checkout@v3
if: needs.changes.outputs.code == 'true'
with:
fetch-depth: "100"
- name: Fetch unshallow
Expand All @@ -189,7 +186,9 @@ jobs:
if: needs.changes.outputs.code == 'true'
with:
python-version: 3.12
- run: |
- name: install
if: needs.changes.outputs.code == 'true'
run: |
python -m pip install -ve '.[tests_core, tests_ci]'
- name: bokeh sampledata
if: needs.changes.outputs.code == 'true'
Expand Down
13 changes: 4 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,16 @@ Installation
============

HoloViews works with
[Python 3](https://github.com/holoviz/holoviews/actions?query=workflow%3Apytest)
[Python](https://github.com/holoviz/holoviews/actions/workflows/test.yaml)
on Linux, Windows, or Mac, and works seamlessly with
[Jupyter Notebook and JupyterLab](https://jupyter.org).

The recommended way to install HoloViews is using the
[conda](https://docs.conda.io/projects/conda/en/latest/index.html) command provided by
[Anaconda](https://docs.anaconda.com/anaconda/install/) or
[Anaconda](https://docs.anaconda.com/free/anaconda/install/) or
[Miniconda](https://docs.conda.io/en/latest/miniconda.html):

conda install -c pyviz holoviews bokeh
conda install holoviews

This command will install the typical packages most useful with
HoloViews, though HoloViews itself depends only on
Expand Down Expand Up @@ -96,14 +96,9 @@ Now you can launch Jupyter Notebook or JupyterLab to explore them:

jupyter lab

If you are working with a JupyterLab version <2.0 you will also need the PyViz JupyterLab
extension:

jupyter labextension install @pyviz/jupyterlab_pyviz

For more details on setup and configuration see [our website](https://holoviews.org/user_guide/Installing_and_Configuring.html).

For general discussion, we have a [gitter channel](https://gitter.im/pyviz/pyviz).
For general discussion, we have a [discord channel](https://discord.gg/AXRHnJU6sP).
If you find any bugs or have any feature suggestions please file a GitHub
[issue](https://github.com/holoviz/holoviews/issues)
or submit a [pull request](https://help.github.com/articles/about-pull-requests).