I am having a bit of trouble getting everything setup locally. Stamplay's command isn't doing anything.
I have installed it using npm install -g stamplay-cli
, but stamplay init
and stamplay deploy
commands aren't doing anything, any ideas where I might have messed up?
Asked
Active
Viewed 130 times
0

Ben Cochrane
- 3,317
- 1
- 14
- 16
1 Answers
2
If your npm installation requires super user permissions; you may need the following commands to install the CLI correctly using:
sudo npm install -g stamplay-cli
Otherwise the error is being caused by your local environment.
I suggest you the follow these steps :
- Re-install Node.js through nvm https://github.com/creationix/nvm (nvm is a manger for the node's versions)
- Restart your bash terminal
- Install the Stamplay CLI again with the command:
npm install -g stamplay-cli

Giuliano Iacobelli
- 1,010
- 1
- 8
- 21