(2020.1.13已解决)npm should be run outside of the node repl, in your normal shell

  • 问题描述

    安装Taro1过程中出现下述问题:

    npm install -g @tarojs/cli
    

    npm : JS领域的包管理工具;

    -g : 全局安装,将安装包放在 /usr/local 下或者你 node 的安装目录,这样就可以在命令行里直接使用。2

    cli : 命令行工具3

    (2020.1.13已解决)npm should be run outside of the node repl, in your normal shell_第1张图片

  • 解决方案4

    上述窗口时运行node.exe时出现的,此窗口意味着进入node开发模式,也就是进入到node里面了,但不能在这里运行npm命令,因为npm是一个独立的模块,需要在其他shell窗口(比如windowscmd)中运行npm

    repl就是指的node.exe这个窗口。

  • Reference


  1. Taro安装 ↩︎

  2. 菜鸟教程 > NPM 使用介绍 ↩︎

  3. npm 是什么? ↩︎

  4. npm should be run outside of the node repl, in your normal shell ↩︎

你可能感兴趣的:(Error,Record,#,JavaScript,Taro,React,npm,repl,outside)