-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation process fails. #184
Comments
@thenetimp Have a look at this comment: composer/composer#1939 (comment) . You have to install php5-intl. |
@hacfi: but it still shoudln't be looking for 2.3 anything when installing the way it is currently installed. I'm not exactly sure why it is doing that. The symfony 2.3 branch has not yet been merged to master. |
@jrobeson Have look at https://packagist.org/packages/sylius/sylius : It specifies symfony/intl: 2.3.* . As symfony/intl is pretty independent of symfony/symfony (meaning the Kernel) I think that requirement is fine. |
ah new to me :( |
Thank you, that totally fixed it. |
Creating the summary chapter
I have run:
composer create-project sylius/sylius -s dev
to get the base installation. When I do it gives me the error:
Problem 1
- Installation request for symfony/icu 1.2.x-dev -> satisfiable by symfony/icu[1.2.x-dev].
- symfony/icu 1.2.x-dev requires lib-icu >=4.4 -> the requested linked library icu has the wrong version installed or is missing from your system, make sure to have the extension providing it.
Problem 2
- symfony/icu 1.2.x-dev requires lib-icu >=4.4 -> the requested linked library icu has the wrong version installed or is missing from your system, make sure to have the extension providing it.
- symfony/intl 2.3.x-dev requires symfony/icu >=1.0-RC,<2.0 -> satisfiable by symfony/icu[1.2.x-dev].
- Installation request for symfony/intl 2.3.x-dev -> satisfiable by symfony/intl[2.3.x-dev].
I have libicu 4.8 installed which should satisfy the requirements, but i continue to get the same error.
I am running on fresh Ubuntu EC2 instance with apache, git, php5, libicu-dev
To make sure libicu was installed I did.
/sbin/ldconfig -p|grep icu
libicuuc.so.48 (libc6,x86-64) => /usr/lib/libicuuc.so.48
libicuuc.so (libc6,x86-64) => /usr/lib/libicuuc.so
libicutu.so.48 (libc6,x86-64) => /usr/lib/libicutu.so.48
libicutu.so (libc6,x86-64) => /usr/lib/libicutu.so
libicutest.so.48 (libc6,x86-64) => /usr/lib/libicutest.so.48
libicutest.so (libc6,x86-64) => /usr/lib/libicutest.so
libiculx.so.48 (libc6,x86-64) => /usr/lib/libiculx.so.48
libiculx.so (libc6,x86-64) => /usr/lib/libiculx.so
libicule.so.48 (libc6,x86-64) => /usr/lib/libicule.so.48
libicule.so (libc6,x86-64) => /usr/lib/libicule.so
libicui18n.so.48 (libc6,x86-64) => /usr/lib/libicui18n.so.48
libicui18n.so (libc6,x86-64) => /usr/lib/libicui18n.so
libicuio.so.48 (libc6,x86-64) => /usr/lib/libicuio.so.48
libicuio.so (libc6,x86-64) => /usr/lib/libicuio.so
libicudata.so.48 (libc6,x86-64) => /usr/lib/libicudata.so.48
libicudata.so (libc6,x86-64) => /usr/lib/libicudata.so
What am I missing?
The text was updated successfully, but these errors were encountered: