web-dev-qa-db-ja.com

EPERM:操作は許可されていません。chmod@ react-native-community iOS

React 16.8.6およびreact-native 0.59.6。iOSを使用しています。

react-native --versionまたはreact-nativeのプレフィックスを入力すると、次のエラーが表示されます。

internal/fs/utils.js:220
    throw err;
    ^

Error: EPERM: operation not permitted, chmod '/usr/local/lib/node_modules/react-native/node_modules/@react-native-community/cli/build/commands/server/external/xsel'
    at Object.chmodSync (fs.js:1104:3)
    at Object.<anonymous> (/usr/local/lib/node_modules/react-native/node_modules/@react-native-community/cli/build/commands/server/copyToClipBoard.js:50:15)
    at Module._compile (internal/modules/cjs/loader.js:956:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:973:10)
    at Module.load (internal/modules/cjs/loader.js:812:32)
    at Function.Module._load (internal/modules/cjs/loader.js:724:14)
    at Module.require (internal/modules/cjs/loader.js:849:19)
    at require (internal/modules/cjs/helpers.js:74:18)
    at Object.<anonymous> (/usr/local/lib/node_modules/react-native/node_modules/@react-native-community/cli/build/commands/server/middleware/copyToClipBoardMiddleware.js:8:47)
    at Module._compile (internal/modules/cjs/loader.js:956:30) {
  errno: -1,
  syscall: 'chmod',
  code: 'EPERM',
  path: '/usr/local/lib/node_modules/react-native/node_modules/@react-native-community/cli/build/commands/server/external/xsel'
}

プロジェクトを掃除しました。再起動しました。

Npmパッケージを削除して再インストールしました。

試してみましたnpm install -g react-native-cli

Package.lock.jsonの依存関係にreact-native-community/cli version 1.12.があります。

私は何をすべきかについての手がかりはありません。ライブラリや、react-nativeキーワードを必要とするその他のものをリンクすることができません。

また、SudoをSudo react-native --versionのように実行すると、以下のようになります。

warn Your project is using deprecated "rnpm" config that will stop working from next release. Please use a "react-native.config.js" file to configure the React Native CLI. Migration guide: https://github.com/react-native-community/cli/blob/master/docs/configuration.md
warn The following packages use deprecated "rnpm" config that will stop working from next release:
  - react-native-google-signin: https://github.com/react-native-community/react-native-google-signin
  - react-native-video: https://github.com/react-native-community/react-native-video#readme
Please notify their maintainers about it. You can find more details at https://github.com/react-native-community/cli/blob/master/docs/configuration.md#migration-guide.
3.0.4

同じことに関していくつかのガイダンスを提案してください。

ありがとう。

3
Dhevendhiran M

同じ問題がありました。 node_modulesを削除して再度インストールすると、問題が解決しました。

0
Hrayr Movsisyan