Ionic无法在“我的”Windows 7环境中运行

时间:2014-10-21 20:02:44

标签: cordova npm ionic-framework

我一直在努力关注" Ionic入门"步骤,似乎无法通过第2步"启动项目"。当我尝试创建Ionic项目时,我收到以下错误。

C:\Users\peterstb>ionic start myApp tabs
Creating Ionic app in folder C:\Users\peterstb\myApp based on tabs project

Downloading: https://github.com/driftyco/ionic-app-base/archive/master.zip
Error fetching: https://github.com/driftyco/ionic-app-base/archive/master.zip { [Error: connect ETIMEDOUT] code: 'ETIMEDOUT', errno: 'ETIMEDOUT', syscall: 'conn
ect' }
Error: Unable to initalize app:  { [Error: connect ETIMEDOUT] code: 'ETIMEDOUT', errno: 'ETIMEDOUT', syscall: 'connect' }

我确实有一个代理,我必须经历,但我必须解决这个问题,以便首先安装cordova和离子组件。我见过的很多线程都指向了一个代理问题,这对我来说很有意义,但我似乎找不到任何可以解决其他内容的问题。代理配置要求,超出了为完成组件安装任务而设置的内容。

1 个答案:

答案 0 :(得分:11)

Ionic不使用npm代理设置。所以你必须分别为离子设置PROXY。您可以通过手动或通过命令提示符SET(仅限当前会话)或使用SETX命令全局设置PROXY环境变量来实现。

set PROXY=http://YourProxy:8080/

setx PROXY http://YourProxy:8080/

如果您的代理需要用户名和密码,您可以将其设置为:

set PROXY=http://YourUserName:YourPassword@YourProxy:8080/