Python
-
[Mac]맥에서 사용중인 서버 끄기 (port kill)Python 2022. 11. 23. 00:08
Address already in use Port 5000 is in use by another program. Either identify and stop that program, or start the server with a different port. On macOS, try disabling the 'AirPlay Receiver' service from System Preferences -> Sharing. 파이참 "Press CTRL+C to quit" 안될 때 실행중인 포트 찾기 lsof -i :포트번호 ex) MacBookAir ~ % lsof -i :5000 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME Python 36122 jeonhyej..
-
Mac에서 Homebrew 설치 시 zsh: command not found 에러Python 2022. 8. 18. 00:51
mongoDB 설치 전 Homebrew 설치하려는데 터미널 창에 아래 에러메세지가 나왔을때 해결방법입니다. zsh: command not found: brew Homebrew가 /usr/local/...이 아닌 /opt/homebrew/ 에 설정되어 있는 상태이므로 export PATH=/opt/homebrew/bin:$PATH 위 명령을 주면 홈 디렉토리의 .zshrc 로 설정해 ZSH shell이 brew command를 찾아 실행할 수 있게 됩니다.