반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- mysql executequery error
- ssl프로토콜확인
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- java 여러개 버전
- error
- easy
- parse
- JUnit
- ssl이란?
- xcrun: error: invalid active developer path
- yum install java
- java 11
- java version
- aws
- 스프링부트테스트
- Medium
- tls프로토콜확인
- No tests found for given includes
- java
- statement.executequery() cannot issue statements that do not produce result sets.
- java 버전 변경
- springboot
- mac os git error
- LeetCode
- springboottest
- Java 1.8
- AWS CLI
- OpenFeign
- log error
- java 1.8 11
Archives
- Today
- Total
쩨이엠 개발 블로그
[ linux ] gradle 수동 설치 본문
728x90
반응형
원래는 homebrew로 gradle 을 설치하려했는데
$brew install gradle
Error: SHA256 mismatch
Expected: 01059532335fefc5e0e7a23cc79eeb1dc6fea477606981b89f259aa0e0f9abc1
Actual: ce0a3d3c8d9462ef784b9776f5b7eed16e89b0cf473c867c3a2a8b26e03b8430
Archive: /Users/Library/Caches/Homebrew/downloads/1124b500fc261f6d9be6193eca8c120f4dfb7ecd3470ac7d8edc1d04ecc5b345--jdk13u-jdk-13.0.2+8.tar.bz2
To retry an incomplete download, remove the file above.
에러가 났다
ㅎ
이 똑같은 에러가 있길래 하라는 대로 해보려고 들어갔는데 뭐가 다른건지 실질적으로 Actual 자체도 없어서 바꾸지도 못함 ㅋㅋㅋㅋ
그래서 이번엔 수동설치를 해보기로 했다
https://gradle.org/releases/에서 complete 다운로드
그리고 다운로드 한 zip 파일을 unzip 한다
다운 받을 위치를 설정한 후 옮겨준다
$ sudo mkdir /opt/gradle
$ sudo mv ~/Downloads/gradle-6.5 /opt/gradle/
//제대로 있는지 확인
$ ls /opt/gradle/gradle-6.5/
LICENSE NOTICE README bin docs init.d lib src
제대로 있는지 확인했으니 어디에서도 gradle을 부르면 gradle이 실행될 수 있도록 PATH를 설정한다
~/.bash_profile 에 하기 export를 추가한다
export PATH="$PATH:/opt/gradle/gradle-6.5/bin
그 후 로그아웃 & 로그인하면 되는데 귀찮으니 source로 대신해주기로 한다
$ source ~/.bash_profile
마지막 gradle 버젼을 확인해본다
$ gradle -v
———
Welcome to Gradle 6.5!
Here are the highlights of this release:
- Experimental file-system watching
- Improved version ordering
- New samples
For more details see https://docs.gradle.org/6.5/release-notes.html
------------------------------------------------------------
Gradle 6.5
------------------------------------------------------------
Build time: 2020-06-02 20:46:21 UTC
Revision: a27f41e4ae5e8a41ab9b19f8dd6d86d7b384dad4
Kotlin: 1.3.72
Groovy: 2.5.11
Ant: Apache Ant(TM) version 1.10.7 compiled on September 1 2019
JVM: 1.8.0_151 (Oracle Corporation 25.151-b12)
OS: Mac OS X 10.12.6 x86_64
———
잘 나오는것 확인 !
728x90
반응형
'개발 > ETC' 카테고리의 다른 글
[ Node ] nodemon 사용하기 (0) | 2020.09.17 |
---|---|
[ postman error ] Error: tunneling socket could not be established, statusCode=400 (0) | 2020.07.30 |
[ linux ] Library not loaded: @executable_path/../.Python (0) | 2020.07.21 |
[ linux ] 사용했던 명령어 history 보기 (0) | 2020.07.14 |
[ error ] Too many open files (0) | 2020.07.12 |
Comments