괴발개발 성장기
반응형

기타 등등/MacBook 입문기 14

[macOS] IntelliJ(인텔리제이) 무료버전 설치 방법

IntelliJ(인텔리제이)는 무료버전과 유료버전이 있습니다.저는 유료까지 필요하지 않아서 무료를 설치하려고 해요. 유료버전 : IntelliJ IDEA Ultimate무료버전 : IntelliJ IDEA Community Edition    1) 아래 링크를 간다.https://www.jetbrains.com/idea/download/?section=mac Download IntelliJ IDEA – The Leading Java and Kotlin IDEDownload the latest version of IntelliJ IDEA for Windows, macOS or Linux.www.jetbrains.com  2) 아래로 내려가면  IntelliJ IDEA Community Edition 버전을..

RabbitMQ 를 Mac 환경에서 설치 및 실행

https://www.rabbitmq.com/install-homebrew.html The Homebrew RabbitMQ Formula — RabbitMQ The Homebrew RabbitMQ Formula Homebrew is a popular package manager for MacOS. RabbitMQ formula is available from Homebrew's core tap (out of the box). The formula will also install a recent supported Erlang/OTP version as a dependency. Before installing m www.rabbitmq.com 1) brew 업데이트하기 brew update 2) Rabbit..

[mac os] 자바 설치

# 배경 강의를 듣기 위해서 자바를 설치했다. go로 했으면 좋았는데... 이미 결제하고 한 강정도 들었는데 go로 하는 강의 나왔다. 아쉽다 ㅠㅠㅠ # 설치방법 $ brew install cask $ brew tap AdoptOpenJDK/openjdk $ brew install --cask adoptopenjdk11 $ java -version 끝! openjdk version "11.0.11" 2021-04-20 OpenJDK Runtime Environment AdoptOpenJDK-11.0.11+9 (build 11.0.11+9) OpenJDK 64-Bit Server VM AdoptOpenJDK-11.0.11+9 (build 11.0.11+9, mixed mode) 결국 자바를 ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ

[mac os - 해결방법] goland에서는 시스템 변수가 먹히지 않는다.

2022.09.18 - [기타 등등/MacBook 입문기] - [maxOs] 시스템 환경 변수 설정하는 방법 [maxOs] 시스템 환경 변수 설정하는 방법 1) 터미널에서 root 디렉터리로 간다 cd ~ 2) 환경변수를 입력하는 곳을 연다 vim .bash_profile 3) i를 누르면 내용을 입력할 수 있다. 4) 환경변수들을 입력한다 export study_env="study" 5) ESC를 누르면 insert모 pink1016.tistory.com mac에서 goland를 사용한다. 그런데 시스템 변수가 먹히지 않는다. 이렇게 했는데 goland에서는 계속 환경변수가 없다는 메시지가 나온다. 그래서 찾아봤다. https://sysgongbu.tistory.com/62 Go: 환경설정 golang..

[macOS] GolangCI-Lint 설치 방법

1) 우선 콘솔창에 lint 설치 brew install golangci/tap/golangci-lint 만약 이미 설치해서 업데이크가 필요한 경우 brew upgrade golangci/tap/golangci-lint - 버전 확인하는 방법 golangci-lint version 2) 메인이 있는 폴더에 설치하면 된다 예를 들어서 나는 tagging-service에 설치를 했다. go get -u github.com/golangci/golangci-lint/cmd/golangci-lint 3) 사용법 golangci-lint run 그럼 틀린 부분이 나온다. # 템플릿 추가해야한다. .golangci.yml # 참조 https://github.com/golangci/golangci-lint GitHub..

[macOS] brew 설치했는데 command not found: brew 에러 나오는 문제

# 배경 yarn 설치하기 위해서 brew를 설치해야 했다. brew를 다 설치한 후 버전 체크를 했다. brew --version 이 때 에러 메시지가 떴다. 더보기 zsh: command not found: brew 다시 설치를 했다. 그런데 이런 메시지가 있었다. 더보기 Warning: /opt/homebrew/bin is not in your PATH. 패스가 등록되어 있지 않다고 했다. # 해결방안 1) 터미널에 아래 명령어를 실행한다 echo 'export PATH=/opt/homebrew/bin:$PATH' >> ~/.zshrc 2) 잘 설정이 되어있는지 체크하기 위해서 들어가 본다 vi ~/.zshrc 3) 아래가 내용이 적혀있다. export PATH=/opt/homebrew/bin:$P..

[macOS] MySQL Workbench 다운받기

# 방법 1) 사이트에 접속해서 다운로드한다. https://dev.mysql.com/downloads/workbench/ MySQL :: Download MySQL Workbench Select Operating System: Select Operating System… Microsoft Windows Ubuntu Linux Red Hat Enterprise Linux / Oracle Linux Fedora macOS Source Code Select OS Version: All Windows (x86, 64-bit) Recommended Download: Other Downloads: Windows (x86, 64-bit), M dev.mysql.com 2) macOS 선택하고 다운로드를 클릭한다 3..

[macOS] Postman 설치하기

1) 사이트에 접속한다 https://www.postman.com/downloads/ Download Postman | Get Started for Free Try Postman for free! Join 20 million developers who rely on Postman, the collaboration platform for API development. Create better APIs—faster. www.postman.com 2) 아래 "Mac Apple Chip"버튼을 클릭한다. 3) 압축을 푼 후 생성된 파일을 클릭한다. 4) 응용프로그램 폴더로 이동할거냐고 물어본다. => Move to Applications Folder를 클릭한다. 5) 로그인하면 끝!!!!! 다 저장이 되는구나 ..

[masOS] 맥북에 aws cli 설치하기

# 배경 aws 정보를 로컬에 셋팅하려고 터미널을 열었다. 그런데 아래와 같은 메시지가 떴다. command not found: aws 설치를 해야하는 구나... 윈도우에서 git bash에서 했지.. # 설치 방법 1) 터미널에 아래와 같은 명령을 친다 curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg" 2) 아래 명령어를 친다 sudo installer -pkg AWSCLIV2.pkg -target / 3) 비번을 치라고 하면 컴퓨터 비번을 치면 된다 4) 설치 성공 메시지가 나온다 installer: Package name is AWS Command Line Interface installer: Installing at base p..

반응형