mateooo93-cortex 0.25.46 → 0.25.47
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 +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,6 +12,16 @@ npm wrapper that downloads the native `cortex` binary for your OS on `postinstal
|
|
|
12
12
|
npm install -g mateooo93-cortex@latest
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
+
If npm returns `EACCES` for `/usr/lib/node_modules`, use a user-owned global prefix:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
mkdir -p ~/.npm-global
|
|
19
|
+
npm config set prefix ~/.npm-global
|
|
20
|
+
echo 'export PATH="$HOME/.npm-global/bin:$PATH"' >> ~/.profile
|
|
21
|
+
. ~/.profile
|
|
22
|
+
npm install -g mateooo93-cortex@latest
|
|
23
|
+
```
|
|
24
|
+
|
|
15
25
|
**curl installer** (also no registry token):
|
|
16
26
|
|
|
17
27
|
```bash
|
package/package.json
CHANGED