简体   繁体   English

npx create-react-app my-app 在安装新版本的 NodeJS 后给我以下错误?

[英]npx create-react-app my-app giving me the following error after installing new version of NodeJS?

I installed a new version of NodeJS after that I'm trying to create-react-app and on running the command npx create-react-app my-app is giving me the following error:我安装了新版本的 NodeJS 之后,我尝试 create-react-app 并在运行命令npx create-react-app my-app给我以下错误:

Try the new cross-platform PowerShell https://aka.ms/pscore6

PS E:\ALL ABOUT React\Jonas Projects\Jonass Project Practice\myproject> npm -v          
8.1.0
PS E:\ALL ABOUT React\Jonas Projects\Jonass Project Practice\myproject> node -v
    v16.13.0
PS E:\ALL ABOUT React\Jonas Projects\Jonass Project Practice\myproject> npx create-react-app my-app
npm ERR! code EPERM  
npm ERR! syscall open
npm ERR! path C:\Users\Firstname~1\AppData\Roaming\npm-cache\_cacache\tmp\724ab6af
npm ERR! errno EPERM
npm ERR! FetchError: Invalid response body while trying to fetch https://registry.npmjs.org/create-react-app: EPERM: operation not permitted, open 'C:\Users\Firstname~1\AppData\Roaming\npm-cache\_cacache\tmp\724ab6af'
npm ERR!     at C:\Program Files\nodejs\node_modules\npm\node_modules\minipass-fetch\lib\body.js:162:15
npm ERR!     at async C:\Program Files\nodejs\node_modules\npm\node_modules\libnpmexec\lib\index.js:106:12
npm ERR!     at async Promise.all (index 0)
npm ERR!     at async exec (C:\Program Files\nodejs\node_modules\npm\node_modules\libnpmexec\lib\index.js:94:17)      
npm ERR!  FetchError: Invalid response body while trying to fetch https://registry.npmjs.org/create-react-app: EPERM: 
    operation not permitted, open 'C:\Users\Firstname~1\AppData\Roaming\npm-cache\_cacache\tmp\724ab6af'
npm ERR!     at C:\Program Files\nodejs\node_modules\npm\node_modules\minipass-fetch\lib\body.js:162:15
npm ERR!     at async C:\Program Files\nodejs\node_modules\npm\node_modules\libnpmexec\lib\index.js:106:12
npm ERR!     at async Promise.all (index 0)
npm ERR!     at async exec (C:\Program Files\nodejs\node_modules\npm\node_modules\libnpmexec\lib\index.js:94:17) {    
npm ERR!   code: 'EPERM',
npm ERR!   errno: 'EPERM',
npm ERR!   syscall: 'open',
npm ERR!   path: 'C:\\Users\\Firstname~1\\AppData\\Roaming\\npm-cache\\_cacache\\tmp\\724ab6af',
npm ERR!   type: 'system'
npm ERR! }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It's possible that the file was already in use (by a text editor or antivirus),
npm ERR! or that you lack permissions to access it.
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator.
PS E:\ALL ABOUT React\Jonas Projects\Jonass Project Practice\myproject>

try this one npx create-react-app myapp instead of npx-create-react-app my-app试试这个 npx create-react-app myapp而不是 npx-create-react-app my-app

project name should not be capitalize or such symbol like dash(-)项目名称不应大写或诸如破折号(-)之类的符号

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM