We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is how I got integer to build. But this is short term, my project has downstream end users who will not be able to do this:
remove all node, npm, yarn, packages, global packages. eg: /usr/local/share/.config/yarn/global/node_modules
install nvm ( https://github.com/nvm-sh/nvm ) eg: ` append to ~/.zshrc: export NVM_DIR="$HOME/.nvm" [ -s "/usr/local/opt/nvm/nvm.sh" ] && . "/usr/local/opt/nvm/nvm.sh" # This loads nvm
[ -s "/usr/local/opt/nvm/etc/bash_completion" ] && . "/usr/local/opt/nvm/etc/bash_completion" # This loads nvm bash_completion ` Install node via nvm
The text was updated successfully, but these errors were encountered:
It will not work w/ python3 w/ yarn - have to switch to 2 ( Unicode-objects must be encoded before hashing )
Other: rm -rf /usr/local/lib/node_modules/ rm -rf /usr/local/share/.config ( I suspect that npm can't work as root )
Sorry, something went wrong.
This is a fix: npm i -g node-gyp@latest
No branches or pull requests
Here is how I got integer to build. But this is short term, my project has downstream end users who will not be able to do this:
remove all node, npm, yarn, packages, global packages.
eg: /usr/local/share/.config/yarn/global/node_modules
install nvm ( https://github.com/nvm-sh/nvm )
eg:
`
append to ~/.zshrc:
export NVM_DIR="$HOME/.nvm"
[ -s "/usr/local/opt/nvm/nvm.sh" ] && . "/usr/local/opt/nvm/nvm.sh" # This loads nvm
[ -s "/usr/local/opt/nvm/etc/bash_completion" ] && . "/usr/local/opt/nvm/etc/bash_completion" # This loads nvm bash_completion
`
Install node via nvm
Also yarn seems to work better than npm
The text was updated successfully, but these errors were encountered: