Installing Bower Package behind a proxy
I am struggling with the Bower's installation behind my company's network.
Despite of setting npm proxy and bower proxy (in the .bowerrc
file), as suggested in many other posts, I still get this error:
bower ECONNREFUSED Request to https://bower.herokuapp.com/packages/bootstrap-sass-official failed: connect ECONNREFUSED
On the other hand node, npm
and grunt
seem to work well.
Can anybody help with some other idea about how to tackle the problem?
node.js proxy gruntjs bower
add a comment |
I am struggling with the Bower's installation behind my company's network.
Despite of setting npm proxy and bower proxy (in the .bowerrc
file), as suggested in many other posts, I still get this error:
bower ECONNREFUSED Request to https://bower.herokuapp.com/packages/bootstrap-sass-official failed: connect ECONNREFUSED
On the other hand node, npm
and grunt
seem to work well.
Can anybody help with some other idea about how to tackle the problem?
node.js proxy gruntjs bower
Here is the answer : stackoverflow.com/questions/21750804/… This worked for me
– Ahmed Kaouri
Jun 20 '14 at 8:46
add a comment |
I am struggling with the Bower's installation behind my company's network.
Despite of setting npm proxy and bower proxy (in the .bowerrc
file), as suggested in many other posts, I still get this error:
bower ECONNREFUSED Request to https://bower.herokuapp.com/packages/bootstrap-sass-official failed: connect ECONNREFUSED
On the other hand node, npm
and grunt
seem to work well.
Can anybody help with some other idea about how to tackle the problem?
node.js proxy gruntjs bower
I am struggling with the Bower's installation behind my company's network.
Despite of setting npm proxy and bower proxy (in the .bowerrc
file), as suggested in many other posts, I still get this error:
bower ECONNREFUSED Request to https://bower.herokuapp.com/packages/bootstrap-sass-official failed: connect ECONNREFUSED
On the other hand node, npm
and grunt
seem to work well.
Can anybody help with some other idea about how to tackle the problem?
node.js proxy gruntjs bower
node.js proxy gruntjs bower
edited Nov 21 at 2:33
Hongarc
2,1551723
2,1551723
asked May 22 '14 at 12:46
Fabbio
108111
108111
Here is the answer : stackoverflow.com/questions/21750804/… This worked for me
– Ahmed Kaouri
Jun 20 '14 at 8:46
add a comment |
Here is the answer : stackoverflow.com/questions/21750804/… This worked for me
– Ahmed Kaouri
Jun 20 '14 at 8:46
Here is the answer : stackoverflow.com/questions/21750804/… This worked for me
– Ahmed Kaouri
Jun 20 '14 at 8:46
Here is the answer : stackoverflow.com/questions/21750804/… This worked for me
– Ahmed Kaouri
Jun 20 '14 at 8:46
add a comment |
4 Answers
4
active
oldest
votes
Try to create a file named ".bowerrc" inside your user profile (usually at "C:/Users/[YOUR USERNAME]" or "%USERPROFILE%" shortcut).
Try to put this inside your file and save:
{
"registry": "http://bower.herokuapp.com"
}
If that doesn't work, try to put this:
{
"registry": "http://bower.herokuapp.com",
"proxy": "http://<user>:<pwd>@proxy.host.br:8080",
"https-proxy": "http://<user>:<pwd>@proxy.host.br:8080",
"strict-ssl": false
}
PS.: You will need to know your company's proxy address.
Similar to stackoverflow.com/a/23288312/1175496 , as Ahmed Kouri points out in a comment on the original question.
– The Red Pea
Jun 20 '17 at 14:56
add a comment |
Have you tried:
http_proxy='proxyserver' https_proxy='proxyserver' bower install
?
Ehm, in the windows shell or where?
– Fabbio
May 22 '14 at 13:57
wherever you callbower
- so yes, I guess that's the windows shell you are using?
– Mangled Deutz
May 22 '14 at 13:58
Yes, but it can't work as http_proxy will be taken as command, right?
– Fabbio
May 22 '14 at 14:01
Have you tried? I don't have a windows at hand, but that should work on any decent shell. If it doesn't, set these as environment variables, then runbower install
alone
– Mangled Deutz
May 22 '14 at 14:18
1
So, did you try setting them as environment variables?
– Mangled Deutz
May 23 '14 at 8:05
|
show 1 more comment
{
"directory": "library",
"registry": "http://bower.herokuapp.com",
"proxy":"http://<USERNAME>:<PASSWORD>@<PROXY_IP>:<PROXY_PORT>/",
"https-proxy":"http://<USERNAME>:<PASSWORD>@<PROXY_IP>:<PROXY_PORT>/"
}
This code worked for me. I am using Win 7 and chrome and also git bash. Here few things need to be cleared. This takes me huge time to find the actual data regarding the user name, password, proxy IP and Port. I will describe it step by step so that every learners can easily grasp the message:
Create a file in the notepad named .bowerrc in the login folder; You can go there by typing at Start>Run>%UserProfile% and press OK.
Type above code in the .bowerrc file with the following changes:
Replace <USERNAME>
with your internet connection user ID or login ID
Replace <PASSWORD>
with your internet connection password or login password.
Replace <PROXY_IP>
and <PROXY_PORT>
with the working proxy IP address and its port number.
Note: There should be no angle brackets.
Proxy IP should be different than your own IP.
Before using any proxy IP and port you should check it is working by changing your proxy IP and port.
You can go through this link to know the details of proxy settings at description here
From this proxy settings you will get Proxy IP and Port.
Recheck all the input so that all are correct and save and close the file.
Open git bash and change directory to the project file and type command and hit enter, in my case, git bash command:
a@a-PC MINGW32 /d/conFusion
$ bower install
It worked like magic.
add a comment |
In my case, my .bowerrc
file was using a proxy (so .bowerrc
had both proxy
and https-proxy
properties set, without any username or password).
Those were causing me the ECONNREFUSED
.
https://github.com/jquery/jquery.git", exit code of #128 fatal: unable to access 'https://github.com/jquery/jquery.git/':
Failed to connect to webproxy.wlb2.nam.nsroot.net port 8080: Connection refused
Additional error details:
fatal: unable to access 'https://github.com/jquery/jquery.git/':
Failed to connect to webproxy.wlb2.nam.nsroot.net port 8080: Connection refused
I removed them, (my current internet connection is not behind a proxy), and so errors stopped.
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%2f23807251%2finstalling-bower-package-behind-a-proxy%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try to create a file named ".bowerrc" inside your user profile (usually at "C:/Users/[YOUR USERNAME]" or "%USERPROFILE%" shortcut).
Try to put this inside your file and save:
{
"registry": "http://bower.herokuapp.com"
}
If that doesn't work, try to put this:
{
"registry": "http://bower.herokuapp.com",
"proxy": "http://<user>:<pwd>@proxy.host.br:8080",
"https-proxy": "http://<user>:<pwd>@proxy.host.br:8080",
"strict-ssl": false
}
PS.: You will need to know your company's proxy address.
Similar to stackoverflow.com/a/23288312/1175496 , as Ahmed Kouri points out in a comment on the original question.
– The Red Pea
Jun 20 '17 at 14:56
add a comment |
Try to create a file named ".bowerrc" inside your user profile (usually at "C:/Users/[YOUR USERNAME]" or "%USERPROFILE%" shortcut).
Try to put this inside your file and save:
{
"registry": "http://bower.herokuapp.com"
}
If that doesn't work, try to put this:
{
"registry": "http://bower.herokuapp.com",
"proxy": "http://<user>:<pwd>@proxy.host.br:8080",
"https-proxy": "http://<user>:<pwd>@proxy.host.br:8080",
"strict-ssl": false
}
PS.: You will need to know your company's proxy address.
Similar to stackoverflow.com/a/23288312/1175496 , as Ahmed Kouri points out in a comment on the original question.
– The Red Pea
Jun 20 '17 at 14:56
add a comment |
Try to create a file named ".bowerrc" inside your user profile (usually at "C:/Users/[YOUR USERNAME]" or "%USERPROFILE%" shortcut).
Try to put this inside your file and save:
{
"registry": "http://bower.herokuapp.com"
}
If that doesn't work, try to put this:
{
"registry": "http://bower.herokuapp.com",
"proxy": "http://<user>:<pwd>@proxy.host.br:8080",
"https-proxy": "http://<user>:<pwd>@proxy.host.br:8080",
"strict-ssl": false
}
PS.: You will need to know your company's proxy address.
Try to create a file named ".bowerrc" inside your user profile (usually at "C:/Users/[YOUR USERNAME]" or "%USERPROFILE%" shortcut).
Try to put this inside your file and save:
{
"registry": "http://bower.herokuapp.com"
}
If that doesn't work, try to put this:
{
"registry": "http://bower.herokuapp.com",
"proxy": "http://<user>:<pwd>@proxy.host.br:8080",
"https-proxy": "http://<user>:<pwd>@proxy.host.br:8080",
"strict-ssl": false
}
PS.: You will need to know your company's proxy address.
answered Nov 7 '14 at 12:16
MichelMattos
13614
13614
Similar to stackoverflow.com/a/23288312/1175496 , as Ahmed Kouri points out in a comment on the original question.
– The Red Pea
Jun 20 '17 at 14:56
add a comment |
Similar to stackoverflow.com/a/23288312/1175496 , as Ahmed Kouri points out in a comment on the original question.
– The Red Pea
Jun 20 '17 at 14:56
Similar to stackoverflow.com/a/23288312/1175496 , as Ahmed Kouri points out in a comment on the original question.
– The Red Pea
Jun 20 '17 at 14:56
Similar to stackoverflow.com/a/23288312/1175496 , as Ahmed Kouri points out in a comment on the original question.
– The Red Pea
Jun 20 '17 at 14:56
add a comment |
Have you tried:
http_proxy='proxyserver' https_proxy='proxyserver' bower install
?
Ehm, in the windows shell or where?
– Fabbio
May 22 '14 at 13:57
wherever you callbower
- so yes, I guess that's the windows shell you are using?
– Mangled Deutz
May 22 '14 at 13:58
Yes, but it can't work as http_proxy will be taken as command, right?
– Fabbio
May 22 '14 at 14:01
Have you tried? I don't have a windows at hand, but that should work on any decent shell. If it doesn't, set these as environment variables, then runbower install
alone
– Mangled Deutz
May 22 '14 at 14:18
1
So, did you try setting them as environment variables?
– Mangled Deutz
May 23 '14 at 8:05
|
show 1 more comment
Have you tried:
http_proxy='proxyserver' https_proxy='proxyserver' bower install
?
Ehm, in the windows shell or where?
– Fabbio
May 22 '14 at 13:57
wherever you callbower
- so yes, I guess that's the windows shell you are using?
– Mangled Deutz
May 22 '14 at 13:58
Yes, but it can't work as http_proxy will be taken as command, right?
– Fabbio
May 22 '14 at 14:01
Have you tried? I don't have a windows at hand, but that should work on any decent shell. If it doesn't, set these as environment variables, then runbower install
alone
– Mangled Deutz
May 22 '14 at 14:18
1
So, did you try setting them as environment variables?
– Mangled Deutz
May 23 '14 at 8:05
|
show 1 more comment
Have you tried:
http_proxy='proxyserver' https_proxy='proxyserver' bower install
?
Have you tried:
http_proxy='proxyserver' https_proxy='proxyserver' bower install
?
answered May 22 '14 at 13:45
Mangled Deutz
10.5k63333
10.5k63333
Ehm, in the windows shell or where?
– Fabbio
May 22 '14 at 13:57
wherever you callbower
- so yes, I guess that's the windows shell you are using?
– Mangled Deutz
May 22 '14 at 13:58
Yes, but it can't work as http_proxy will be taken as command, right?
– Fabbio
May 22 '14 at 14:01
Have you tried? I don't have a windows at hand, but that should work on any decent shell. If it doesn't, set these as environment variables, then runbower install
alone
– Mangled Deutz
May 22 '14 at 14:18
1
So, did you try setting them as environment variables?
– Mangled Deutz
May 23 '14 at 8:05
|
show 1 more comment
Ehm, in the windows shell or where?
– Fabbio
May 22 '14 at 13:57
wherever you callbower
- so yes, I guess that's the windows shell you are using?
– Mangled Deutz
May 22 '14 at 13:58
Yes, but it can't work as http_proxy will be taken as command, right?
– Fabbio
May 22 '14 at 14:01
Have you tried? I don't have a windows at hand, but that should work on any decent shell. If it doesn't, set these as environment variables, then runbower install
alone
– Mangled Deutz
May 22 '14 at 14:18
1
So, did you try setting them as environment variables?
– Mangled Deutz
May 23 '14 at 8:05
Ehm, in the windows shell or where?
– Fabbio
May 22 '14 at 13:57
Ehm, in the windows shell or where?
– Fabbio
May 22 '14 at 13:57
wherever you call
bower
- so yes, I guess that's the windows shell you are using?– Mangled Deutz
May 22 '14 at 13:58
wherever you call
bower
- so yes, I guess that's the windows shell you are using?– Mangled Deutz
May 22 '14 at 13:58
Yes, but it can't work as http_proxy will be taken as command, right?
– Fabbio
May 22 '14 at 14:01
Yes, but it can't work as http_proxy will be taken as command, right?
– Fabbio
May 22 '14 at 14:01
Have you tried? I don't have a windows at hand, but that should work on any decent shell. If it doesn't, set these as environment variables, then run
bower install
alone– Mangled Deutz
May 22 '14 at 14:18
Have you tried? I don't have a windows at hand, but that should work on any decent shell. If it doesn't, set these as environment variables, then run
bower install
alone– Mangled Deutz
May 22 '14 at 14:18
1
1
So, did you try setting them as environment variables?
– Mangled Deutz
May 23 '14 at 8:05
So, did you try setting them as environment variables?
– Mangled Deutz
May 23 '14 at 8:05
|
show 1 more comment
{
"directory": "library",
"registry": "http://bower.herokuapp.com",
"proxy":"http://<USERNAME>:<PASSWORD>@<PROXY_IP>:<PROXY_PORT>/",
"https-proxy":"http://<USERNAME>:<PASSWORD>@<PROXY_IP>:<PROXY_PORT>/"
}
This code worked for me. I am using Win 7 and chrome and also git bash. Here few things need to be cleared. This takes me huge time to find the actual data regarding the user name, password, proxy IP and Port. I will describe it step by step so that every learners can easily grasp the message:
Create a file in the notepad named .bowerrc in the login folder; You can go there by typing at Start>Run>%UserProfile% and press OK.
Type above code in the .bowerrc file with the following changes:
Replace <USERNAME>
with your internet connection user ID or login ID
Replace <PASSWORD>
with your internet connection password or login password.
Replace <PROXY_IP>
and <PROXY_PORT>
with the working proxy IP address and its port number.
Note: There should be no angle brackets.
Proxy IP should be different than your own IP.
Before using any proxy IP and port you should check it is working by changing your proxy IP and port.
You can go through this link to know the details of proxy settings at description here
From this proxy settings you will get Proxy IP and Port.
Recheck all the input so that all are correct and save and close the file.
Open git bash and change directory to the project file and type command and hit enter, in my case, git bash command:
a@a-PC MINGW32 /d/conFusion
$ bower install
It worked like magic.
add a comment |
{
"directory": "library",
"registry": "http://bower.herokuapp.com",
"proxy":"http://<USERNAME>:<PASSWORD>@<PROXY_IP>:<PROXY_PORT>/",
"https-proxy":"http://<USERNAME>:<PASSWORD>@<PROXY_IP>:<PROXY_PORT>/"
}
This code worked for me. I am using Win 7 and chrome and also git bash. Here few things need to be cleared. This takes me huge time to find the actual data regarding the user name, password, proxy IP and Port. I will describe it step by step so that every learners can easily grasp the message:
Create a file in the notepad named .bowerrc in the login folder; You can go there by typing at Start>Run>%UserProfile% and press OK.
Type above code in the .bowerrc file with the following changes:
Replace <USERNAME>
with your internet connection user ID or login ID
Replace <PASSWORD>
with your internet connection password or login password.
Replace <PROXY_IP>
and <PROXY_PORT>
with the working proxy IP address and its port number.
Note: There should be no angle brackets.
Proxy IP should be different than your own IP.
Before using any proxy IP and port you should check it is working by changing your proxy IP and port.
You can go through this link to know the details of proxy settings at description here
From this proxy settings you will get Proxy IP and Port.
Recheck all the input so that all are correct and save and close the file.
Open git bash and change directory to the project file and type command and hit enter, in my case, git bash command:
a@a-PC MINGW32 /d/conFusion
$ bower install
It worked like magic.
add a comment |
{
"directory": "library",
"registry": "http://bower.herokuapp.com",
"proxy":"http://<USERNAME>:<PASSWORD>@<PROXY_IP>:<PROXY_PORT>/",
"https-proxy":"http://<USERNAME>:<PASSWORD>@<PROXY_IP>:<PROXY_PORT>/"
}
This code worked for me. I am using Win 7 and chrome and also git bash. Here few things need to be cleared. This takes me huge time to find the actual data regarding the user name, password, proxy IP and Port. I will describe it step by step so that every learners can easily grasp the message:
Create a file in the notepad named .bowerrc in the login folder; You can go there by typing at Start>Run>%UserProfile% and press OK.
Type above code in the .bowerrc file with the following changes:
Replace <USERNAME>
with your internet connection user ID or login ID
Replace <PASSWORD>
with your internet connection password or login password.
Replace <PROXY_IP>
and <PROXY_PORT>
with the working proxy IP address and its port number.
Note: There should be no angle brackets.
Proxy IP should be different than your own IP.
Before using any proxy IP and port you should check it is working by changing your proxy IP and port.
You can go through this link to know the details of proxy settings at description here
From this proxy settings you will get Proxy IP and Port.
Recheck all the input so that all are correct and save and close the file.
Open git bash and change directory to the project file and type command and hit enter, in my case, git bash command:
a@a-PC MINGW32 /d/conFusion
$ bower install
It worked like magic.
{
"directory": "library",
"registry": "http://bower.herokuapp.com",
"proxy":"http://<USERNAME>:<PASSWORD>@<PROXY_IP>:<PROXY_PORT>/",
"https-proxy":"http://<USERNAME>:<PASSWORD>@<PROXY_IP>:<PROXY_PORT>/"
}
This code worked for me. I am using Win 7 and chrome and also git bash. Here few things need to be cleared. This takes me huge time to find the actual data regarding the user name, password, proxy IP and Port. I will describe it step by step so that every learners can easily grasp the message:
Create a file in the notepad named .bowerrc in the login folder; You can go there by typing at Start>Run>%UserProfile% and press OK.
Type above code in the .bowerrc file with the following changes:
Replace <USERNAME>
with your internet connection user ID or login ID
Replace <PASSWORD>
with your internet connection password or login password.
Replace <PROXY_IP>
and <PROXY_PORT>
with the working proxy IP address and its port number.
Note: There should be no angle brackets.
Proxy IP should be different than your own IP.
Before using any proxy IP and port you should check it is working by changing your proxy IP and port.
You can go through this link to know the details of proxy settings at description here
From this proxy settings you will get Proxy IP and Port.
Recheck all the input so that all are correct and save and close the file.
Open git bash and change directory to the project file and type command and hit enter, in my case, git bash command:
a@a-PC MINGW32 /d/conFusion
$ bower install
It worked like magic.
edited Nov 27 '15 at 16:09
answered Nov 27 '15 at 15:54
ohid
165214
165214
add a comment |
add a comment |
In my case, my .bowerrc
file was using a proxy (so .bowerrc
had both proxy
and https-proxy
properties set, without any username or password).
Those were causing me the ECONNREFUSED
.
https://github.com/jquery/jquery.git", exit code of #128 fatal: unable to access 'https://github.com/jquery/jquery.git/':
Failed to connect to webproxy.wlb2.nam.nsroot.net port 8080: Connection refused
Additional error details:
fatal: unable to access 'https://github.com/jquery/jquery.git/':
Failed to connect to webproxy.wlb2.nam.nsroot.net port 8080: Connection refused
I removed them, (my current internet connection is not behind a proxy), and so errors stopped.
add a comment |
In my case, my .bowerrc
file was using a proxy (so .bowerrc
had both proxy
and https-proxy
properties set, without any username or password).
Those were causing me the ECONNREFUSED
.
https://github.com/jquery/jquery.git", exit code of #128 fatal: unable to access 'https://github.com/jquery/jquery.git/':
Failed to connect to webproxy.wlb2.nam.nsroot.net port 8080: Connection refused
Additional error details:
fatal: unable to access 'https://github.com/jquery/jquery.git/':
Failed to connect to webproxy.wlb2.nam.nsroot.net port 8080: Connection refused
I removed them, (my current internet connection is not behind a proxy), and so errors stopped.
add a comment |
In my case, my .bowerrc
file was using a proxy (so .bowerrc
had both proxy
and https-proxy
properties set, without any username or password).
Those were causing me the ECONNREFUSED
.
https://github.com/jquery/jquery.git", exit code of #128 fatal: unable to access 'https://github.com/jquery/jquery.git/':
Failed to connect to webproxy.wlb2.nam.nsroot.net port 8080: Connection refused
Additional error details:
fatal: unable to access 'https://github.com/jquery/jquery.git/':
Failed to connect to webproxy.wlb2.nam.nsroot.net port 8080: Connection refused
I removed them, (my current internet connection is not behind a proxy), and so errors stopped.
In my case, my .bowerrc
file was using a proxy (so .bowerrc
had both proxy
and https-proxy
properties set, without any username or password).
Those were causing me the ECONNREFUSED
.
https://github.com/jquery/jquery.git", exit code of #128 fatal: unable to access 'https://github.com/jquery/jquery.git/':
Failed to connect to webproxy.wlb2.nam.nsroot.net port 8080: Connection refused
Additional error details:
fatal: unable to access 'https://github.com/jquery/jquery.git/':
Failed to connect to webproxy.wlb2.nam.nsroot.net port 8080: Connection refused
I removed them, (my current internet connection is not behind a proxy), and so errors stopped.
answered Jun 20 '17 at 15:02
The Red Pea
5,32643878
5,32643878
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f23807251%2finstalling-bower-package-behind-a-proxy%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
Here is the answer : stackoverflow.com/questions/21750804/… This worked for me
– Ahmed Kaouri
Jun 20 '14 at 8:46