cspell fails to install using nodeenv
See original GitHub issueWhile trying to enable cspell to be used a pre-commit hook, I faces a new issue, failure to install when doing:
pip install --user nodeenv
git clone https://github.com/Jason3S/cspell
cd cspell
nodeenv nenv
. nenv/bin/activate
npm install -g .
The last command fails with:
$ npm install -g . [21:18:12]
npm ERR! path /home/ssbarnea/cspell/nenv/lib/node_modules/cspell/dist/app.js
npm ERR! code ENOENT
npm ERR! errno -2
npm ERR! syscall chmod
npm ERR! enoent ENOENT: no such file or directory, chmod '/home/ssbarnea/cspell/nenv/lib/node_modules/cspell/dist/app.js'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
npm ERR! A complete log of this run can be found in:
npm ERR! /home/ssbarnea/.npm/_logs/2018-07-04T21_18_18_526Z-debug.log
(nenv)FAIL: 254
Issue Analytics
- State:
- Created 5 years ago
- Comments:24 (9 by maintainers)
Top Results From Across the Web
cspell fails to install using nodeenv · Issue #53 - GitHub
While trying to enable cspell to be used a pre-commit hook, I faces a new issue, failure to install when doing: pip install...
Read more >cspell - npm
Start using cspell in your project by running `npm i cspell`. There are 20 other projects in the npm registry using cspell.
Read more >Getting Started with CSpell
Adding CSpell to an existing project. In the steps below we will create a cspell configuration file and setup a single custom dictionary...
Read more >Spell Check not working in Word 2010 - Office - Microsoft Learn
Spell Check does not recognize misspelled words. ... Proofing Tools are not installed for <default language>, try re-installing proofing ...
Read more >cspell | Yarn - Package Manager
cspell is a command line tool and library for spell checking code. Support Future Development. Become a Patreon! Support through PayPal ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The package was using
prepublish
but that was deprecated. It now usesprepare
.This patch seems to make
npm install -g .
work: