エラー解決:Pre-built binaries not installable [email protected]@10.15.2

1260 ワード

場面:このエラーは権限問題によるもので、npm install [email protected]を実行する時に発生する原因:通常の場合、rootユーザ実行npm install xxxはrootユーザではなく、書き込み権限を持たない解決:npm install [email protected] --unsafe-perm --verbose解釈:--unsafe-perm:rootユーザで操作し、--verbose:進捗情報を表示する.
ちなみにcentosの下のnodejsのインストールプロセス:nodejs履歴バージョンアドレスを添付します.https://nodejs.org/zh-cn/download/releases/
コピー貼り付けを順次実行します.wgethttps://nodejs.org/download/release/v10.15.2/node-v10.15.2-linux-x64.tar.xz tar xf node-v 10.15.2-linux-x 64.tar.xz mv node-v 10.15.2-linux-x 64 node ln-s/root/soft/node/bin/node/usr/local/bin/node ln-s/root/soft/node/bin
クイックコマンドを設定して、淘宝npmミラーを使用します.vi.bashrc alias cnpm="npm--registry=https://registry.npm.taobao.org --cache=$HOME/.npm/.cache/cnpm--disturl=https://npm.taobao.org/dist --userconfig=$HOME/.cnpmrc"source.bashrc
モジュールをインストールする時cnpm install xxxでいいです.
npmその他のコマンド:npm help config npm config get[]npm config delete npm config list[–json]npm config ed npm set npm get[]
例えば、構成を変えて、宝npmの鏡像を使います.npm config set registryhttps://registry.npm.taobao.org npm config set cache$HOME/.npm/.cache/cnpm npm config set disturlhttps://npm.taobao.org/dist npm config set userconfig$HOME/.cnpmrc