Unable to install the plugin in Windows
See original GitHub issueYour Environment
- Plugin version: 0.8.3
- Platform: Windows 10
- OS version: 1607
- Device manufacturer / model: -
- Cordova version (
cordova -v
): 7.0.1 - Cordova platform version (
cordova platform ls
):
Installed platforms:
android 6.2.3
browser 4.1.0
ios 4.4.0
Available platforms:
blackberry10 ~3.8.0 (deprecated)
webos ~3.7.0
windows ~5.0.0
- Plugin config
<?xml version='1.0' encoding='utf-8'?>
<widget id="fi.utu.ville.ViLLEMobile" version="1.2.2" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.
apache.org/ns/1.0">
...
<content src="index.html" />
<access origin="*" />
<allow-intent href="mailto:*" />
<preference name="DisallowOverscroll" value="true" />
<preference name="SplashScreen" value="splash" />
<preference name="SplashScreenDelay" value="5000" />
<preference name="Orientation" value="default" />
<engine name="android" spec="^6.2.3" />
<engine name="browser" spec="^4.1.0" />
<engine name="ios" spec="^4.4.0" />
<plugin name="cordova-plugin-console" spec="^1.0.7" />
<plugin name="cordova-plugin-device" spec="^1.1.6" />
<plugin name="cordova-plugin-dialogs" spec="^1.3.3" />
<plugin name="cordova-plugin-globalization" spec="^1.0.7" />
<plugin name="cordova-plugin-inappbrowser" spec="^1.7.1" />
<plugin name="cordova-plugin-network-information" spec="^1.3.3" />
<plugin name="cordova-plugin-splashscreen" spec="^4.0.3" />
<plugin name="cordova-plugin-whitelist" spec="^1.3.2" />
</widget>
What happens
Trying to install the plugin but it fails with following error:
Failed to install 'de.appplant.cordova.plugin.local-notification': Error
at C:...\AppData\Roaming\npm\node_modules\cordova\node_modules\cordova-lib\src\plugman\fetch.js:205:33
at _rejected (C:...\AppData\Roaming\npm\node_modules\cordova\node_modules\cordova-fetch\node_modules\q\
q.js:864:24)
at C:...\AppData\Roaming\npm\node_modules\cordova\node_modules\cordova-fetch\node_modules\q\q.js:890:30
at Promise.when (C:...\AppData\Roaming\npm\node_modules\cordova\node_modules\cordova-fetch\node_modules
\q\q.js:1142:31)
at Promise.promise.promiseDispatch (C:...\AppData\Roaming\npm\node_modules\cordova\node_modules\cordova
-fetch\node_modules\q\q.js:808:41)
at C:...\AppData\Roaming\npm\node_modules\cordova\node_modules\cordova-fetch\node_modules\q\q.js:624:44
at runSingle (C:...\AppData\Roaming\npm\node_modules\cordova\node_modules\cordova-fetch\node_modules\q\
q.js:137:13)
at flush (C:...\AppData\Roaming\npm\node_modules\cordova\node_modules\cordova-fetch\node_modules\q\q.js
:125:13)
at _combinedTickCallback (internal/process/next_tick.js:95:7)
at process._tickCallback (internal/process/next_tick.js:161:9)
Error: Failed to fetch plugin cordova-plugin-app-event via registry.
Probably this is either a connection problem, or plugin spec is incorrect.
Check your connection and plugin name/version/URL.
Error: cmd: Command failed with exit code 4294963229 Error output:
npm ERR! path C:\...\node_modules\cordova-plugin-app-event\package.json
npm ERR! code ELOOP
npm ERR! errno -4067
npm ERR! syscall open
npm ERR! ELOOP: too many symbolic links encountered, open 'C:\...\node_modules\co
rdova-plugin-app-event\package.json'
I’m not even able to open the the cordova-plugin-app-event folder in Windows explorer.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:21 (1 by maintainers)
Top Results From Across the Web
Trouble installing the plug-in? - Microsoft Support
Plug -in download fails · Click Tools > Internet Options. · Click the Security tab > Custom Level. · Scroll down to Downloads...
Read more >Notepad++ Plugins Failing to Install on Windows 10 - Appuals
Some Windows 10 users are reporting that they are unable to install any plugins on their Notepad++ installation. There are several different ...
Read more >Connect Browser Plugin: Won?t install on Windows - IBM
Generally installation of the Connect Browser Plugin in Windows happens without error. However sometimes this can fail if domain or system ...
Read more >Notepad++ will not install plugins – Installation of Plugin failed
Update Notepad++ to latest version; Open Notepad++ as an Admin; Install plugins via Plugin Manager; Manually install plugins. Let us talk about ...
Read more >unable to install plugin on local mahchine - WordPress.org
Hi,. I am facing issue installing plugin (WeForms, WPForms and any plugin) on my local Windows 10 machine. wordpress is configured using XAMPP...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@d3w201 thank you very much! I use your method to solve my problem. I do not have a MAC,so I doing this in my windows: install plugin:
cordova plugin add cordova-plugin-app-event
and install plugin:cordova plugin add de.appplant.cordova.plugin.local-notification
then there is no problems.[i SOLVED doing this]
cordova plugin rm de.appplant.cordova.plugin.local-notification
cordova plugin add cordova-plugin-device
then copy from my MAC project directory : “myProject/plugin/cordova-plugin-app-event” to my WINDOWS project directory : “myProject/plugin/”
after this try again to install plugin:
cordova plugin add de.appplant.cordova.plugin.local-notification
4 me it works! 😉