10 Replies
I am new to Filament, and just trying to get started, but have this issue..?
Can someone help me?
i think @cheesegrits could help i suck at filament 😭
I don't understand how this is failing on the FIRST step. I am just simply following the steps, there is no guide for this error in their docs.
Which command did you run?
composer require filament/filament:"^3.2" -W
I fixed it with just doing
composer require filament/filament -W
Idk why its causing an issue cuz when I took out 3.2, and it installed 3.2, weird stuff on windows igHuh. On a fresh laravel project?
Check the filament version with
php artisan about
Ye
Not on pc no more
@Matthew
There’s a known issue with windows and the ^ in composer. Easiest thing to do is remove the version number and just require filament/filament or just add filament/filament: ^3.2 to your composer.json then run a composer update.
I believe if you’re using WSL it should be fine though. 🤷
Would be nice to state that in the docs 😁