You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run terra environment:enable I get an error
[Symfony\Component\Process\Exception\RuntimeException]
The process has been signaled with signal "4".
So I've run with -vvv and it seems that EnvironmentFactory->enable() throws an exception when try to execute new Process('docker-compose up -d', $this->getDockerComposePath())
I'm using MacBook (13-inch, Mid 2010), I've found issue about docker-compose docker/compose#1885
This is happening because by default, Homebrew builds Python with all of the optimizations that the build machine can support. Assuming the build is happening on a Mac with a Sandy Bridge or newer processor, those optimizations will include the use of AVX instructions.
So the fix was to run pip install docker-compose
I leave it here if someone may need a workaround.
The text was updated successfully, but these errors were encountered:
When I run
terra environment:enable
I get an error[Symfony\Component\Process\Exception\RuntimeException]
The process has been signaled with signal "4".
So I've run with -vvv and it seems that
EnvironmentFactory->enable()
throws an exception when try to executenew Process('docker-compose up -d', $this->getDockerComposePath())
I'm using MacBook (13-inch, Mid 2010), I've found issue about docker-compose
docker/compose#1885
So the fix was to run
pip install docker-compose
I leave it here if someone may need a workaround.
The text was updated successfully, but these errors were encountered: