Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
holoviz
GitHub Repository: holoviz/panel
Path: blob/main/examples/gallery/anaconda-project.yml
2011 views
1
name: panel_gallery
2
description: An environment to serve all Panel gallery examples
3
4
commands:
5
prod:
6
description: Serve the prod Panel gallery
7
unix: panel serve *.ipynb --static-dirs thumbnails=thumbnails --reuse-sessions --global-loading-spinner --liveness --num-procs 8
8
supports_http_options: true
9
env_spec: prod
10
dev:
11
description: Serve the dev Panel gallery
12
unix: panel serve *.ipynb --static-dirs thumbnails=thumbnails --reuse-sessions --global-loading-spinner --liveness --num-procs 2
13
supports_http_options: true
14
env_spec: dev
15
16
variables:
17
PANEL_AE5_CDN: 1
18
MPLBACKEND: Agg
19
DISPLAY: ":99.0"
20
MESA_GL_VERSION_OVERRIDE: 3.2
21
PYVISTA_OFF_SCREEN: "true"
22
23
packages: &pkgs
24
- python >=3.12
25
- panel >=1.7.4
26
- bokeh_sampledata >=2024.2
27
- holoviews >=1.21.0
28
- nbconvert >=7.16.6
29
- pandas >=2.3.1
30
- dask >=2025.7.0
31
- pillow >=11.3.0
32
- spatialpandas >=0.5.0
33
- scikit-learn >=1.7.0
34
- scikit-image >=0.25.2
35
- fastparquet >=2024.11.0
36
- hvplot >=0.11.3
37
- datashader >=0.18.1
38
- graphviz >=12.2.1
39
- networkx >=3.5
40
- ipywidgets >=8.1.7
41
- pygraphviz >=1.14
42
- plotly >=6.2.0
43
- altair >=5.5.0
44
- pydeck >=0.8.0
45
- pyvista >=0.45.3
46
- seaborn >=0.13.2
47
- xgboost >=3.0.2
48
- vtk >=9.4.2
49
- pyvista >=0.45.3
50
- mesalib >=25.0.5
51
- numpy >=1.26.4
52
- ipyvolume >=0.6.3
53
- folium >=0.20.0
54
- vega_datasets >=0.9.0
55
56
env_specs:
57
prod:
58
packages: *pkgs
59
channels:
60
- conda-forge
61
- nodefaults
62
dev:
63
packages: *pkgs
64
channels:
65
- pyviz/label/dev
66
- conda-forge
67
- nodefaults
68
69