npm ERR! asyncWrite is not a function

前端 未结 16 2048
既然无缘
既然无缘 2021-02-06 21:44

npm install -g firebase-tools npm ERR! asyncWrite is not a function npm ERR! pna.nextTick is not a function

npm ERR! A complete log of this run can be found in: npm ERR!

16条回答
  •  甜味超标
    2021-02-06 22:07

    1. Install an old version node, which can run success.
    2. Update your npm (global).
    3. Install the high version node.

    The following is worked in my local environment.

    First install and old version node.

    sudo n 8.11.3

    And then update npm.

    sudo npm i -g npm

    Now, you update your node, everything work fine.

    sudo n 10.12.0

提交回复
热议问题