через npx установка идет (идет вместе с npm, отдельно устанавливать не надо)
npx create-react-app my-app
где my-app - название будущей папки проекта
либо через npm init (не install и без create)
npm init react-app my-app
всё же здесь расписано
https://create-react-app.dev/docs/getting-started/ но требуется нода минимум 14 версии (вроде сейчас уже даже 16)
для этого можно установить nvm (node version manager), чтобы не париться самому с установкой пакетов нужной версии.
подробнее тут:
https://tecadmin.net/how-to-install-nvm-on-ubuntu-20-04/
sudo dnf install npm - npm я смог установить
а при становлении npm install create-react-app - выходит следующее:
npm ERR! code EACCES
npm ERR! syscall open
npm ERR! path /home/alex/package-lock.json
npm ERR! errno -13
npm ERR! Error: EACCES: permission denied, open '/home/alex/package-lock.json'
npm ERR! [Error: EACCES: permission denied, open '/home/alex/package-lock.json'] {
npm ERR! errno: -13,
npm ERR! code: 'EACCES',
npm ERR! syscall: 'open',
npm ERR! path: '/home/alex/package-lock.json'
npm ERR! }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
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.
npm ERR! A complete log of this run can be found in: /home/alex/.npm/_logs/2023-09-02T15_31_26_868Z-debug-0.log
помогите пожалуйста