Error installing create react app with code 7

后端 未结 1 1084
南笙
南笙 2021-01-17 03:30

This type of error creeps up when I am trying to install create react app with command line .How can I fix this problem ?

C:\\Users\\Rohit Mishra>npx crea         


        
相关标签:
1条回答
  • 2021-01-17 03:44

    The issue is occurring because you have space between your computer username. You can resolve this by not installing your create-react-app package globally.

    Use these commands :-

    1. npm cache clean --force
    2. npm install create-react-app --force
    3. npm fund
    4. npx create-react-app <app-name> 
    
    0 讨论(0)
提交回复
热议问题