1
Has anyone experienced this problem?

When trying to install gradle 4.4 the following error is displayed:

user@test:~$ sdk install gradle 4.4

Downloading: gradle 4.4

In progress...

Warning: Failed to open /home/user/.sdkman/tmp/gradle-4.4.headers.tmp curl: (23) Failed writing received data to disk/application mv: unable to get status '/home/user/.sdkman/tmp/gradle-4.4.bin': Missing file or directory




I removed and reinstalled SDKMAN several times and was unsuccessful


user@test:~$ sdk version

SDKMAN 5.16.0
---
Ubuntu v20.04
---
Giovane
  • 11
  • 1
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Nov 24 '22 at 05:53

1 Answers1

2

This is because maybe you are using curl installed from snap. Try use curl from apt:

$ sudo snap remove curl
$ sudo apt install curl
djafta
  • 21
  • 4