You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the FIRST_SETUP_debian_wheezy.sh script, I get the following before it completes:
Running mktexlsr. This may take some time... done.
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 51 100 51 0 0 2104 0 --:--:-- --:--:-- --:--:-- 5666
sh: 1: Moved: not found
ALL DONE! YEAH!!
looking into this issue, apparently the final line in the above script attempts to install npm via www.npmjs.org, however this domain has moved and is now being redirected to www.npm.org.
the fix is to just add -L to curl so it follows redirects. or maybe, just update the url?
Second to last line in the FIRST_SETUP_debian_wheezy.sh script needs to be changed from
When running the FIRST_SETUP_debian_wheezy.sh script, I get the following before it completes:
Running mktexlsr. This may take some time... done.
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 51 100 51 0 0 2104 0 --:--:-- --:--:-- --:--:-- 5666
sh: 1: Moved: not found
ALL DONE! YEAH!!
looking into this issue, apparently the final line in the above script attempts to install npm via www.npmjs.org, however this domain has moved and is now being redirected to www.npm.org.
the fix is to just add -L to curl so it follows redirects. or maybe, just update the url?
Second to last line in the FIRST_SETUP_debian_wheezy.sh script needs to be changed from
curl https://www.npmjs.org/install.sh | sh
to
curl -L https://www.npmjs.org/install.sh | sh
The text was updated successfully, but these errors were encountered: