Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f272ef2

Browse files
Add conda-forge installation to the readme
1 parent fd1e2e8 commit f272ef2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Python wrapper for [μPlot](https://github.com/leeoniya/uPlot) 📈
44

55
## Installation
66

7+
### From conda-forge
8+
9+
```console
10+
conda install -c conda-forge uplot-python
11+
```
12+
713
### From PyPI
814

915
```console
@@ -19,7 +25,7 @@ import numpy as np
1925
import uplot
2026

2127
t = np.linspace(0.0, 1.0, 10)
22-
data = [t, np.exp(0.42 * t)]
28+
data = [t, np.exp(0.42 * t)] # list of NumPy arrays
2329
opts = {
2430
"width": 1920,
2531
"height": 600,

0 commit comments

Comments
 (0)