Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
holoviz
GitHub Repository: holoviz/panel
Path: blob/main/examples/gallery/anaconda-project.yml
3372 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.8.1
26
- bokeh_sampledata >=2025.0
27
- holoviews >=1.21.0
28
- nbconvert >=7.16.6
29
- pandas >=2.3.3
30
- dask >=2025.9.1
31
- pillow >=11.3.0
32
- spatialpandas >=0.5.0
33
- scikit-learn >=1.7.2
34
- scikit-image >=0.25.2
35
- fastparquet >=2024.11.0
36
- hvplot >=0.12.1
37
- datashader >=0.18.2
38
- graphviz >=13.1.2
39
- networkx >=3.5
40
- ipywidgets >=8.1.7
41
- pygraphviz >=1.14
42
- plotly >=6.3.1
43
- altair >=5.5.0
44
- pydeck >=0.8.0
45
- pyvista >=0.46.3
46
- seaborn >=0.13.2
47
- xgboost >=3.0.2
48
- vtk >=9.4.2
49
- mesalib >=25.0.5
50
- numpy >=1.26.4
51
- ipyvolume >=0.6.3
52
- folium >=0.20.0
53
- vega_datasets >=0.9.0
54
55
env_specs:
56
prod:
57
packages: *pkgs
58
channels:
59
- conda-forge
60
- nodefaults
61
dev:
62
packages: *pkgs
63
channels:
64
- pyviz/label/dev
65
- conda-forge
66
- nodefaults
67
68