0

enter image description here

C:\Users\KEREM>composer create-project laravel/laravel example-app
Creating a "laravel/laravel" project at "./example-app"
Info from https://repo.packagist.org: #StandWithUkraine
Installing laravel/laravel (v10.0.4)


In ProjectInstaller.php line 69:

  mkdir(): Permission denied


create-project [-s|--stability STABILITY] [--prefer-source] [--prefer-dist] [--prefer-install PREFER-INSTALL] [--repository REPOSITORY] [--repository-url REPOSITORY-URL] [--add-repository] [--dev] [--no-dev] [--no-custom-installers] [--no-scripts] [--no-progress] [--no-secure-http] [--keep-vcs] [--remove-vcs] [--no-install] [--no-audit] [--audit-format AUDIT-FORMAT] [--ignore-platform-req IGNORE-PLATFORM-REQ] [--ignore-platform-reqs] [--ask] [--] [<package> [<directory> [<version>]]]

C:\Users\KEREM>composer create-project laravel/laravel example-app

Creating a "laravel/laravel" project at "./example-app" Info from https://repo.packagist.org: #StandWithUkraine Installing laravel/laravel (v10.0.4)

In ProjectInstaller.php line 69:

mkdir(): Permission denied

Compo
  • 36,585
  • 5
  • 27
  • 39
  • 1
    Did you check whether the permissions match? What else did you try to resolve the problem? – Nico Haase Mar 20 '23 at 13:09
  • https://stackoverflow.com/q/9200556/367456 suggests to also give it a reboot because you can. And consult your operating systems manual for file-system specifics in for your home directory. This is likely not a programming question, so its perhaps worth you share your personal understanding / reading of the error message displayed to better understand your question. – hakre Mar 20 '23 at 21:09
  • try other path that you don't have permissions.. – francisco Mar 23 '23 at 19:42

1 Answers1

0

Be sure you have permission to write in C:\Users\KEREM. Maybe working in the subfolder C:\Users\KEREM\Documents\... or another subfolders.


If still not working, try to run windows console as administrator and rerun composer create-project laravel/laravel example-app in C:\Users\KEREM folder.

Hichxm
  • 33
  • 5