Cordova error : HTTP error 404 retrieving version 3.6.3 of cordova for www
i am learning cordova. i am on ubuntu 14.04 LTS and cordova version installed on my machine is 4.3.1 . i am trying to create simple project using command
cordova create MyApp
but i am getting below error
Creating a new cordova project with name "HelloCordova" and id "io.cordova.hellocordova" at location "/home/sanjay/Desktop/MyApp"
Downloading cordova library for www...
Error: HTTP error 404 retrieving version 3.6.3 of cordova for www
at Request._callback (/usr/share/cordova-cli/node_modules/cordova-lib/src/cordova/lazy_load.js:251:30)
at Request.self.callback (/usr/share/cordova-cli/node_modules/cordova-lib/node_modules/request/request.js:372:22)
at emitTwo (events.js:126:13)
at Request.emit (events.js:214:7)
at Request.<anonymous> (/usr/share/cordova-cli/node_modules/cordova-lib/node_modules/request/request.js:1310:14)
at emitOne (events.js:121:20)
at Request.emit (events.js:211:7)
at IncomingMessage.<anonymous> (/usr/share/cordova-cli/node_modules/cordova-lib/node_modules/request/request.js:1258:12)
at emitNone (events.js:111:20)
at IncomingMessage.emit (events.js:208:7)
What could be the reason for this errror ? how to solve this issue.
cordova
add a comment |
i am learning cordova. i am on ubuntu 14.04 LTS and cordova version installed on my machine is 4.3.1 . i am trying to create simple project using command
cordova create MyApp
but i am getting below error
Creating a new cordova project with name "HelloCordova" and id "io.cordova.hellocordova" at location "/home/sanjay/Desktop/MyApp"
Downloading cordova library for www...
Error: HTTP error 404 retrieving version 3.6.3 of cordova for www
at Request._callback (/usr/share/cordova-cli/node_modules/cordova-lib/src/cordova/lazy_load.js:251:30)
at Request.self.callback (/usr/share/cordova-cli/node_modules/cordova-lib/node_modules/request/request.js:372:22)
at emitTwo (events.js:126:13)
at Request.emit (events.js:214:7)
at Request.<anonymous> (/usr/share/cordova-cli/node_modules/cordova-lib/node_modules/request/request.js:1310:14)
at emitOne (events.js:121:20)
at Request.emit (events.js:211:7)
at IncomingMessage.<anonymous> (/usr/share/cordova-cli/node_modules/cordova-lib/node_modules/request/request.js:1258:12)
at emitNone (events.js:111:20)
at IncomingMessage.emit (events.js:208:7)
What could be the reason for this errror ? how to solve this issue.
cordova
add a comment |
i am learning cordova. i am on ubuntu 14.04 LTS and cordova version installed on my machine is 4.3.1 . i am trying to create simple project using command
cordova create MyApp
but i am getting below error
Creating a new cordova project with name "HelloCordova" and id "io.cordova.hellocordova" at location "/home/sanjay/Desktop/MyApp"
Downloading cordova library for www...
Error: HTTP error 404 retrieving version 3.6.3 of cordova for www
at Request._callback (/usr/share/cordova-cli/node_modules/cordova-lib/src/cordova/lazy_load.js:251:30)
at Request.self.callback (/usr/share/cordova-cli/node_modules/cordova-lib/node_modules/request/request.js:372:22)
at emitTwo (events.js:126:13)
at Request.emit (events.js:214:7)
at Request.<anonymous> (/usr/share/cordova-cli/node_modules/cordova-lib/node_modules/request/request.js:1310:14)
at emitOne (events.js:121:20)
at Request.emit (events.js:211:7)
at IncomingMessage.<anonymous> (/usr/share/cordova-cli/node_modules/cordova-lib/node_modules/request/request.js:1258:12)
at emitNone (events.js:111:20)
at IncomingMessage.emit (events.js:208:7)
What could be the reason for this errror ? how to solve this issue.
cordova
i am learning cordova. i am on ubuntu 14.04 LTS and cordova version installed on my machine is 4.3.1 . i am trying to create simple project using command
cordova create MyApp
but i am getting below error
Creating a new cordova project with name "HelloCordova" and id "io.cordova.hellocordova" at location "/home/sanjay/Desktop/MyApp"
Downloading cordova library for www...
Error: HTTP error 404 retrieving version 3.6.3 of cordova for www
at Request._callback (/usr/share/cordova-cli/node_modules/cordova-lib/src/cordova/lazy_load.js:251:30)
at Request.self.callback (/usr/share/cordova-cli/node_modules/cordova-lib/node_modules/request/request.js:372:22)
at emitTwo (events.js:126:13)
at Request.emit (events.js:214:7)
at Request.<anonymous> (/usr/share/cordova-cli/node_modules/cordova-lib/node_modules/request/request.js:1310:14)
at emitOne (events.js:121:20)
at Request.emit (events.js:211:7)
at IncomingMessage.<anonymous> (/usr/share/cordova-cli/node_modules/cordova-lib/node_modules/request/request.js:1258:12)
at emitNone (events.js:111:20)
at IncomingMessage.emit (events.js:208:7)
What could be the reason for this errror ? how to solve this issue.
cordova
cordova
asked Nov 25 '18 at 10:24
Sanjay SalunkheSanjay Salunkhe
1,13211936
1,13211936
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
in order to prevent this error, you need to update cordova to the latest available version. you can forcing him to update using this command in Linux:
npm install -g cordova@7.0.0
modify the 7.0.0 by the latest version
add a comment |
I had the same problem with ubuntu 16.04 and cordova 4.3.1. I solved it with sudo:
sudo cordova create MyApp
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53466570%2fcordova-error-http-error-404-retrieving-version-3-6-3-of-cordova-for-www%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
in order to prevent this error, you need to update cordova to the latest available version. you can forcing him to update using this command in Linux:
npm install -g cordova@7.0.0
modify the 7.0.0 by the latest version
add a comment |
in order to prevent this error, you need to update cordova to the latest available version. you can forcing him to update using this command in Linux:
npm install -g cordova@7.0.0
modify the 7.0.0 by the latest version
add a comment |
in order to prevent this error, you need to update cordova to the latest available version. you can forcing him to update using this command in Linux:
npm install -g cordova@7.0.0
modify the 7.0.0 by the latest version
in order to prevent this error, you need to update cordova to the latest available version. you can forcing him to update using this command in Linux:
npm install -g cordova@7.0.0
modify the 7.0.0 by the latest version
answered Jan 17 at 9:30
safa.ENSIsafa.ENSI
11
11
add a comment |
add a comment |
I had the same problem with ubuntu 16.04 and cordova 4.3.1. I solved it with sudo:
sudo cordova create MyApp
add a comment |
I had the same problem with ubuntu 16.04 and cordova 4.3.1. I solved it with sudo:
sudo cordova create MyApp
add a comment |
I had the same problem with ubuntu 16.04 and cordova 4.3.1. I solved it with sudo:
sudo cordova create MyApp
I had the same problem with ubuntu 16.04 and cordova 4.3.1. I solved it with sudo:
sudo cordova create MyApp
answered Mar 4 at 11:29
BronsonBronson
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53466570%2fcordova-error-http-error-404-retrieving-version-3-6-3-of-cordova-for-www%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown