安装ionic-cli-4后无法识别Cordova命令

Ric*_*evi 4 cordova ionic-cli

在项目期间我想模拟(ionic cordova emulate ios)然后它问我(我通常会说是):

? The Ionic CLI (local version) has an update available (3.20.0 => 4.0.1)! Would you like to install it? Yes
> npm i -D -E ionic@latest
? Running command - done!

[OK] Updated Ionic CLI to 4.0.1! 

Please re-run your command.

Note: You can downgrade to your old version by running: npm i --save -E ionic@3.20.0
Run Code Online (Sandbox Code Playgroud)

之后我尝试重新运行命令,但它就像它不再识别命令一样ionic cordova emulate ios:

[ERROR] Unable to find command: /usr/local/bin/node /Users/$ME/.npm-packages/bin/ionic cordova emulate ios

   _             _
  (_) ___  _ __ (_) ___
  | |/ _ \| '_ \| |/ __|
  | | (_) | | | | | (__
  |_|\___/|_| |_|_|\___|  CLI PRO 4.0.1


  Usage:

    $ ionic <command> [<args>] [--help] [--verbose] [--quiet] [--no-interactive] [--no-color] [--confirm] [options]

  Global Commands:
   ...
  Project Commands:

    build .................... Build web assets and prepare your app for any platform targets
    cordova <subcommand> ..... Cordova functionality (subcommands: build, compile, emulate, platform, plugin, prepare,
                               requirements, resources, run)
    doctor <subcommand> ...... Commands for checking the health of your Ionic project (subcommands: check, list, treat)
    generate ................. Automatically create framework features (alias: g)
    git <subcommand> ......... Commands relating to git (subcommands: remote)
    integrations <subcommand>  Manage various integrations in your app (subcommands: disable, enable, list)
    link ..................... Connect local apps to Ionic Pro
    monitoring <subcommand> .. Commands relating to Ionic Pro error monitoring (subcommands: syncmaps)
    serve .................... Start a local dev server for app dev/testing (alias: s)
    ssl <subcommand> ......... (experimental) Commands for managing SSL keys & certificates (subcommands: generate)
Run Code Online (Sandbox Code Playgroud)

不确定它到底想要什么,语法没有改变(仍然ionic cordova $something)同时,我降级了......:/

小智 9

有同样的问题.解决方法是全局安装离子CLI:

当开发人员用户从离子项目根目录执行以下操作时:

npm uninstall ionic
Run Code Online (Sandbox Code Playgroud)

然后当用户"root"执行以下操作:

npm i -g ionic@latest
Run Code Online (Sandbox Code Playgroud)

之后,您应该能够使用新的离子CLI版本4.0.1