-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmads_package.json
More file actions
30 lines (30 loc) · 903 Bytes
/
Copy pathmads_package.json
File metadata and controls
30 lines (30 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "python_agent",
"requirements": {
"Common": {
"note": [
"Requires MADS 2.4.0 or later",
"Provides embedded CPython 3.14.5 interpreter, installed under $(mads -p)/python-runtime/bin/python3",
"Install Python depencencies with pip, preferably in a virtual environment generated with the bundled interpreter"
]
},
"Windows": {
"note": ["Requires Windows 10 or later"],
"commands": []
},
"Linux": {
"note": ["Requires Ubuntu 22.04 or later"],
"commands": []
},
"macOS": {
"note": [
"Requires macOS 10.15 or later",
"You might need to remove the quarantine protection on the plugin once installed"
],
"commands": [
"xattr -d com.apple.quarantine $(mads -p)/bin/mads-python",
"xattr -d com.apple.quarantine -r $(mads -p)/python-runtime"
]
}
}
}