Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey @cutelapisdolphin,
This is due to the Composer configuration when you run composer install and the conflicts it generates with the Vendor folder.
There are several ways to solve it, but one of the simplest is.
Remove the packages you already have installed which includes this configuration from the composer:
- sudo rm -r vendor
Run the command again with this flag: --ignore-platform-reqs:
- composer install --ignore-platform-reqs
Hope that helps,
Sergio Turpín
Hi there,
In addition to what has been mentioned I could suggest the following:
php -v
If you don’t get 7.4.0 back, then this means that you might still be using the old PHP version, if this is the case, then you could use the full path to your PHP binary, eg: /usr/bin/php74 /usr/bin/composer install or you could set the PHP 7.4 to be the default version so that you don’t have to specify the path.
composer.lock file and then run composer install againLet me know how it goes.
Best,
Bobby