Sermanes
Sermanes

Reputation: 506

RuntimeException when I create a new Symfony Project

good afternoon. I'm having trouble creating a new symfony project. When I enter the following command in the terminal:

symfony new mufasa

The terminal return to me the next message:

[RuntimeException]
The selected version (3.3.12) cannot be installed because it does not exist
.
Execute the following command to install the latest stable Symfony release:
/usr/local/bin/symfony new mufasa

I have tried to update the symfony application using symfony self-update but is up to date:

// Symfony Installer is already updated to the latest version (1.5.9).

What can I do to solve this problem?

Upvotes: 2

Views: 1225

Answers (1)

Alessandro Minoccheri
Alessandro Minoccheri

Reputation: 35973

try this please:

symfony new mufasa 3.3.11

release 3.3.12 was released some hours ago:

https://github.com/symfony/symfony/releases

But there is a similar issue:

https://github.com/symfony/symfony-installer/issues/141

Upvotes: 10

Related Questions