简体   繁体   中英

Unable to Install Ionic on Windows

I'm meant to be maintaining an Ionic app, but I cannot install Ionic on any of my machines (neither at work - Win 7) nor at home (Win 10).

Perhaps we could start with my home machine (Win 10). After the fail, I uninstalled Node completely, and restarted the machine. I re-installed Nodejs and upgraded npm such that the versions are: Nodejs: 10.4.1 NPM: 6.1.0

The output from my Powershell prompt (at elevated privileges) is:

PS F:\\Code\\Powershell\\Toolkit> npm install -g ionic npm ERR! path C:\\Users\\roger\\AppData\\Roaming\\npm\\node_modules\\ionic\\node_modules.readable-stream.DELETE npm ERR! code ENOTEMPTY npm ERR! errno -4051 npm ERR! syscall rmdir npm ERR! ENOTEMPTY: directory not empty, rmdir 'C:\\Users\\roger\\AppData\\Roaming\\npm\\node_modules\\ionic\\node_modules.readable-stream.DELETE'

npm ERR! A complete log of this run can be found in: npm ERR! C:\\Users\\roger\\AppData\\Roaming\\npm-cache_logs\\2018-06-17T01_32_39_358Z-debug.log

Interestingly, the directory .readable-stream.DELETE referred to as being not empty, is empty. So, not sure what is going on there.

Any help would be great. Thanks

First thing to do is sort out that directory deletion issue. Make sure you uninstall Nodejs to make sure none of its processes are locking that directory.

Try the following.

  1. Right-click the drive upon which that directory is located (probably C drive).
  2. Click Properties on the Context Menu
  3. Go to the Tools tab
  4. Click the Check button.

Let it run its course. Once complete, if all looks well, try deleting the directory again.

If that succeeded, install Node again (v8.11.3). Don't upgrade NPM.
Install Ionic again with npm install -g ionic
Create an app ionic start myApp tabs
Change to the myApp directory.
Run ionic serve

Hopefully the first part will clear away that folder and get you on your way.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM