2012-11-22 71 views
1

我按照setting up web_components for DART上的說明操作。從頁面這段代碼是給我的問題:無法在DART應用中找到酒吧包參考

import 'package:web_components/component_build.dart'; 
import 'dart:io'; 

void main() { 
    build(new Options().arguments, ['web/app.html']); 
} 

當我嘗試運行,這是我收到的錯誤:

dart --enable-checked-mode --package-root=C:\Users\John Jelinek\dart\ build.dart

Unable to open file: C:\Users\John Jelinek\dart\web_components/component_build.dart'file:///C:/Users/John Jelinek/Documents/dart/webComponents/build.dart': Error: line 1 pos 1: library handler failed import 'package:web_components/component_build.dart'; ^

我不知道爲什麼它正試圖找到當項目在C:\Users\John Jelinek\Documents\dart中時,參考C:\Users\John Jelinek\dart。順便說一句,我在Windows 7家庭高級版64位。確保我的酒吧包引用適當位置的最佳方法是什麼?

注意:我發現someone else having similar problems,但沒有一個答案爲我工作。

+0

這可能是路徑上的空間。嘗試一個沒有空格的路徑,看看問題是否繼續。 –

回答