1

今日、Windows用のバージョン3.3.0をダウンロードしました。Pythonをインストールし、forge createを使用して最初のアプリを使い始めようとしましたが、エラーログに次のように表示されます。

2012-04-28 18:03:28,285 [   INFO] Forge tools running at version 3.3.0
2012-04-28 18:03:28,288 [  DEBUG] Forge build tools version: 3.3.0
2012-04-28 18:03:28,288 [  DEBUG] main: {"server": "https://trigger.io/api/"}
2012-04-28 18:03:28,299 [  DEBUG] GET https://trigger.io/api/version_check/3/3/0/
2012-04-28 18:03:29,661 [  DEBUG] checking API response for success or error
2012-04-28 18:03:29,661 [   INFO] Update result: you already have the latest tools
2012-04-28 18:03:44,101 [  DEBUG] GET https://trigger.io/api/auth/loggedin
2012-04-28 18:03:44,279 [  DEBUG] checking API response for success or error
2012-04-28 18:03:44,279 [  DEBUG] already authenticated via cookie - continuing
2012-04-28 18:03:44,279 [   INFO] Registering new app "helloworld" with trigger.io...
2012-04-28 18:03:44,279 [  DEBUG] POST https://trigger.io/api/app/
2012-04-28 18:03:56,368 [  DEBUG] checking API response for success or error
2012-04-28 18:03:56,368 [   INFO] Fetching initial project template
2012-04-28 18:03:56,368 [  DEBUG] already authenticated - continuing
2012-04-28 18:03:56,368 [  DEBUG] GET https://trigger.io/api/app/xxx/initial_files/
2012-04-28 18:03:56,579 [  DEBUG] unzip is available, using it
2012-04-28 18:03:56,782 [  DEBUG] unzip output
2012-04-28 18:03:56,782 [  DEBUG] Can't execute /c/Program Files/Common Files/Symbian/tools/unzip.pl.

2012-04-28 18:03:56,782 [  DEBUG] Extracted initial project template
2012-04-28 18:03:56,782 [  DEBUG] Removed downloaded file ".\initial.zip"
2012-04-28 18:03:56,782 [   INFO] Building app for the first time...
2012-04-28 18:03:56,782 [  ERROR] Source folder "src" does not exist - have you run forge create yet?

Symbianフォルダー内で解凍を探すことを想定していますか?

これを修正する方法がわからない場合は、助けていただければ幸いです...

ありがとう、EE

4

1 に答える 1

1

出力のこれらの行から、ツールが期待するものとは異なるバージョンの「unzip」が使用されているように見えます。

2012-04-28 18:03:56,579 [  DEBUG] unzip is available, using it
2012-04-28 18:03:56,782 [  DEBUG] unzip output
2012-04-28 18:03:56,782 [  DEBUG] Can't execute /c/Program Files/Common Files/Symbian/tools/unzip.pl.

これにより、基本的なテンプレートアプリが解凍されない(srcディレクトリが作成される)ため、エラーが発生します。

PATHから「/c/ProgramFiles/CommonFiles/Symbian/tools/unzip.pl」を削除して「forgecreate」を再試行してみてください。

于 2012-04-28T22:55:00.213 に答える