John
John

Reputation: 180

How to fix docker-compose installing problem?

There are no problems with docker. I install docker-compose on ubuntu 20 launched on Virtual Box. Following instruction for Linux:

sudo curl -L "https://github.com/docker/compose/releases/download/1.28.5/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

something was installed (table with downloading info was shown).

sudo chmod +x /usr/local/bin/docker-compose

there is not output. Then this command to check:

docker-compose --version

After that error was shown:

[4989] Error -3 from inflate: incorrect data check
[4989] Error decompressing _decimal.cpython-37m-x86_64-linux-gnu.so
Failed to write all bytes for _decimal.cpython-37m-x86_64-linux-gnu.so
fwrite: Bad address

What is the reason? How to check is it installed?

Upvotes: 0

Views: 1430

Answers (1)

ryanzidago
ryanzidago

Reputation: 368

Have you tried simply deinstalling and reinstalling docker-compose? According to this thread on the docker forum, this seems to have fixed the issue for a user who had the same problem as you.

Upvotes: 1

Related Questions