7

反応ネイティブの使用を開始し、Web サイトのチュートリアルに従いましたが、サンプル プロジェクトを実行すると、ターミナルにいくつかのエラー メッセージが返されました。

Looking for JS files in
   /Users/username/Desktop/nativeTest/BookSearch 

[06:03:00] <START> Building Dependency Graph
[06:03:00] <START> Crawling File System
[06:03:00] <START> Loading bundles layout
[06:03:00] <END>   Loading bundles layout (0ms)

React packager ready.

2015-12-13T06:03:01,281: [cli] Failed to open /Users/username/Library/LaunchAgents/com.github.facebook.watchman.plist for write: Permission denied

2015-12-13T06:03:01,281: [cli] Failed to open /Users/username/Library/LaunchAgents/com.github.facebook.watchman.plist for write: Permission denied

Watchman:  watchman--no-pretty get-sockname returned with exit code null 2015-12-13T06:03:01,281: [cli] Failed to open /Users/username/Library/LaunchAgents/com.github.facebook.watchman.plist for write: Permission denied

 ERROR  watchman--no-pretty get-sockname returned with exit code null 2015-12-13T06:03:01,281: [cli] Failed to open /Users/username/Library/LaunchAgents/com.github.facebook.watchman.plist for write: Permission denied

Error: watchman--no-pretty get-sockname returned with exit code null 2015-12-13T06:03:01,281: [cli] Failed to open /Users/username/Library/LaunchAgents/com.github.facebook.watchman.plist for write: Permission denied

    at ChildProcess.<anonymous> (/Users/username/Desktop/nativeTest/BookSearch/node_modules/fb-watchman/index.js:194:18)
    at emitTwo (events.js:88:13)
    at ChildProcess.emit (events.js:173:7)
    at maybeClose (internal/child_process.js:819:16)
    at Socket.<anonymous> (internal/child_process.js:320:11)
    at emitOne (events.js:78:13)
    at Socket.emit (events.js:170:7)
    at Pipe._onclose (net.js:470:12)

See http://facebook.github.io/react-native/docs/troubleshooting.html
for common problems and solutions.
~
Process terminated. Press <enter> to close the window

com.github.facebook.watchman.plist を chmod しようとしましたが、実際にはそのようなファイルはありません。多分私はファイルのパスを変更する必要がありますか?

私が試した他のこと:

  1. 醸造更新
  2. 醸造アップグレードウォッチマン
  3. brew uninstall ウォッチマン && brew install --HEAD ウォッチマン
  4. プロジェクトを再起動して再起動する

パッケージのバージョン (必要な場合):

  1. ノード: v5.2.0
  2. 警備員: v4.2.0
4

2 に答える 2

19

現在のユーザーには、フォルダ に対する権限がありません/Users/[username]/Library/LaunchAgents

これを修正するには、次のコマンドを使用します。

$ sudo chown $(whoami) /Users/$(whoami)/Library/LaunchAgents
于 2016-12-05T02:42:32.403 に答える
9

/Users/username/Library/Users/username/Library/LaunchAgentsが所有しusernameており、正しい権限を持っていることを確認してください。これが私の見た目です:

$ ls -ld ~/Library
drwx------+ 57 wez  users  1938 Nov  6 07:49 /Users/wez/Library
$ ls -ld ~/Library/LaunchAgents
drwxr-xr-x  3 wez  users  102 Dec 11 16:13 /Users/wez/Library/LaunchAgents
$ ls -l ~/Library/LaunchAgents/com.github.facebook.watchman.plist
-rw-r--r--  1 wez  users  1545 Dec 11 16:13 /Users/wez/Library/LaunchAgents/com.github.facebook.watchman.plist

また、root として、または sudo 経由で watchman を実行しないようにしてください。

于 2015-12-13T04:48:59.263 に答える