File tree Expand file tree Collapse file tree 1 file changed +23
-8
lines changed Expand file tree Collapse file tree 1 file changed +23
-8
lines changed Original file line number Diff line number Diff line change @@ -46,10 +46,28 @@ plot.add_animations([update_data])
46
46
plot.show()
47
47
```
48
48
49
-
50
49
# Installation
51
50
52
- Install directly from GitHub.
51
+ ` fastplotlib ` is available as a ` pip ` package
52
+
53
+ ``` bash
54
+ pip install fastplotlib
55
+ ```
56
+
57
+ Clone or download the repo to try the examples
58
+
59
+ ``` bash
60
+ # clone the repo
61
+ git clone https://github.com/kushalkolar/fastplotlib.git
62
+
63
+ # cd into examples and launch jupyter lab
64
+ cd fastplotlib/examples
65
+ jupyter lab
66
+ ```
67
+
68
+ You will need a GPU that supports Vulkan (iGPUs in CPUs should be fine). Generally if your GPU is from 2017 or later it should support Vulkan. See the section on "Install Vulkan drivers" below for more information.
69
+
70
+ ### For Development
53
71
54
72
``` bash
55
73
git clone https://github.com/kushalkolar/fastplotlib.git
@@ -62,12 +80,7 @@ cd examples
62
80
jupyter lab
63
81
```
64
82
65
- Don't install from PYPI, ` fastplotlib ` is in the alpha stage, the pip package is not regularly updated yet.
66
-
67
- You will need a GPU that supports Vulkan (iGPUs in CPUs should be fine).
68
- Generally if your GPU is from 2017 or later it should support Vulkan.
69
-
70
- ## Install Vulkan drivers and other stuff
83
+ ## Install Vulkan drivers
71
84
72
85
For more information see: https://github.com/pygfx/wgpu-py#platform-requirements
73
86
@@ -88,6 +101,8 @@ For other distros install the appropriate vulkan driver package.
88
101
### Mac OSX:
89
102
You will need at least MacOSX v10.13, not sure how to install Vulkan drivers on Mac. If anyone knows you can add instructions here!
90
103
104
+ # Gallery
105
+
91
106
### Extremely fast image updates, 5 x 5 gridplot
92
107
93
108
https://www.youtube.com/embed/-_0Gp_EqepI
You can’t perform that action at this time.
0 commit comments