File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed
Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " c2pa-python"
3- version = " 0.3.0 "
3+ version = " 0.3.1 "
44edition = " 2021"
55authors = [
" Gavin Peacock <[email protected] " ]
66
Original file line number Diff line number Diff line change @@ -14,6 +14,23 @@ Install from PyPI by entering this command:
1414pip install -U c2pa-python
1515```
1616
17+ To build from source on Linux, install curl and rustup and set up python
18+
19+ ```
20+ apt update
21+ apt install curl
22+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
23+ source "$HOME/.cargo/env"
24+
25+ apt install python3
26+ apt install pip
27+ apt install python3.11-venv
28+
29+ python3 -m venv .venv
30+ source .venv/bin/activate
31+ pip install uniffi-bindgen
32+ pip install -U c2pa-python
33+ ```
1734## Usage
1835
1936### Import
You can’t perform that action at this time.
0 commit comments