powergrid-ai 1.3.1 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -42,6 +42,15 @@ npm install -g powergrid-ai
|
|
|
42
42
|
|
|
43
43
|
The npm package detects Python 3.11+ and auto-installs the Python backend if needed.
|
|
44
44
|
|
|
45
|
+
> **Note:** npm 10+ may block install scripts by default. If setup doesn't run automatically, use:
|
|
46
|
+
> ```bash
|
|
47
|
+
> npm install -g powergrid-ai --allow-scripts=powergrid-ai
|
|
48
|
+
> ```
|
|
49
|
+
> Or allow it globally:
|
|
50
|
+
> ```bash
|
|
51
|
+
> npm config set allow-scripts powergrid-ai --location=user
|
|
52
|
+
> ```
|
|
53
|
+
|
|
45
54
|
### Requirements
|
|
46
55
|
|
|
47
56
|
- **Python 3.11+** must be on your PATH
|