File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -19,3 +19,19 @@ for plat in pocky.list_all_platforms():
19
19
# Create a context for the default platform
20
20
ctx = pocky.Context.default()
21
21
```
22
+
23
+ ## Installing
24
+
25
+ The easiest way to install is using pip directly:
26
+ ``` sh
27
+ pip install git+https://github.com/emprice/pocky.git@main
28
+ ```
29
+
30
+ To build from source, you can follow this pattern:
31
+ ``` sh
32
+ git clone https://github.com/emprice/pocky
33
+ cd pocky
34
+ python -m build .
35
+ pip install --force-reinstall --ignore-installed dist/pocky-1.0-cp311-cp311-linux_x86_64.whl
36
+ ```
37
+ You may need to change the path to the wheel depending on your OS, architecture, and Python version.
Original file line number Diff line number Diff line change 2
2
build-backend = " setuptools.build_meta"
3
3
requires = [
4
4
" setuptools" ,
5
- " numpy" ,
5
+ " numpy<2 " ,
6
6
]
7
7
8
8
[project ]
You can’t perform that action at this time.
0 commit comments