728x90 전체 글203 [solved] xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools) xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun xcode-select --install 위 명령을 터미널에서 실행 후 소프트웨어 설치를 진행합니다. 2022. 11. 18. [Solved] Unable to negotiate with xxx.xxx.xxx.xxx port 22: no matching key exchange method found. Their offer: diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1 맥에서 아래와 같은 에러가 나며 ssh 접속이 되지 않는 현상을 해결한 방법에 대해 공유해보도록 하겠습니다. Unable to negotiate with xxx.xxx.xxx.xxx port 22: no matching key exchange method found. Their offer: diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1 먼저, 관리자 권한으로 ssh_config 파일을 엽니다. > sudo vi /etc/ssh/ssh_config 아래 주석이 달려 있는 줄에서 주석을 제거합니다. # Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc # MACs hmac-md5,hma.. 2022. 11. 15. [MySQL] Error: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) Error: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) 맥에서 brew install mysql 명령으로 mysql 을 설치 후 위와 같은 에러를 발생했고 아래와 같이 해결 했습니다. ❯ brew services start mysql ==> Successfully started `mysql` (label: homebrew.mxcl.mysql) ❯ mysql -uroot Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 9 Server version: 8.0.30 Homebrew 2022. 10. 7. [Python] ERROR: Could not find a version that satisfies the requirement yaml > pip3 install yaml ERROR: Could not find a version that satisfies the requirement yaml (from versions: none) ERROR: No matching distribution found for yaml 아래와 같이 py 를 붙여줍니다. > pip3 install pyyaml 2022. 9. 29. Git 커밋 메세지에 Emoji 넣기 JetBrains 플러그인을 설치해주어야 합니다. 그러면 이처럼 Commit Message 란에 Gitmoji 버튼이 노출되는 것을 확인할 수 있습니다. 버튼을 클릭하면 요로케 목록이 나오고 원하는 것을 선택하면 메세지란에 이모지가 들어가게 됩니다. 혹시 이모지로 들어가지 않고 텍스트로 들어간다면 Preferences(⌘ + ,) > Gitmoji or Gitmoji 검색 으로 들어가셔서 "Use unicode emoji instead of text version (:code:)" 항목을 체크하고 적용해주시면 됩니다. 2022. 9. 7. [Solved] command not found: laravel 상황 composer global require "laravel/installer" 라라벨 프로젝트를 설치하기 위해 인스톨러를 설치했습니다. 에러 ~ ❯ laravel new example-app zsh: command not found: laravel 인스톨러로 라라벨 프로젝트를 생성하려고 하니 laravel 명령을 찾을 수 없는 것을 확인 할 수 있었습니다. 해결 ~ ❯ echo 'export PATH="$PATH:$HOME/.composer/vendor/bin"' >> ~/.bash_profile ~ ❯ source ~/.bash_profile 위처럼 path 설정을 추가했고 정상적으로 명령이 실행되는 것을 확인했습니다. 2022. 9. 4. 이전 1 2 3 4 5 6 7 8 ··· 34 다음 728x90