반응형 오류76 jenv add "ln No such file or directory" 오류상황 : temurin 으로 필요한 java 버전을 설치 후 jenv에 추가하려고 하니 에러 발생 jenv add /Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home/ 에러메세지 : ln: /Users/kim-you/.jenv/versions/temurin-17.jdk: No such file or directory해결 : 에러메시지 디렉토리에 .jenv/version 디렉토리가 없어서 발생. 직접 폴더 만들어주면 해결됨 2025. 1. 31. prompt_status:5: command not found: wc 원인 : zsh 편집하다가 환경설정을 잘못했을 때 발생해결 : 터미널에 아래 명령어 입력하고 zsh 수정#1.터미널에 입력export PATH=%PATH:/bin:/usr/local/bin:/usr/bin#2.zsh 수정vim ~/ .zshrcsource ~/ .zshrc 2025. 1. 31. Argument of type 'Ref<x>' is not assignable to parameter of type 'x' https://stackoverflow.com/questions/71834444/argument-of-type-refx-is-not-assignable-to-parameter-of-type-x' is not assignable to parameter of type 'x'" data-og-description="Using the new Composition API I am trying to get data from an input and pass it to a function which expects a string. However, TypeScript is complaining the types don't match up because one is a Re..." data-og-host="stackove.. 2024. 4. 26. SCP: Connection Closed subsystem request failed on channel 0 scp: Connection closed -O 옵션을 추가해주면 문제가 해결된다. $ scp -O -P 22 test.txt abc@11.22.33.44 2024. 4. 18. ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) 에러내용 : ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) 해결방법: 호스트 주소를 추가로 명시하고 접속 mysql -u root -h 127.0.0.1 -p 또는 실행중인 도커에 접속하여 MYSQL 접속 docker exec -it [컨테이너ID] bash 2024. 4. 16. Property 'id' does not exist on type 'never'. ts Typescipt 사용 시 불러오는 데이터의 명확한 데이터 타입을 모르는 경우 발생. 보통 빈 배열을 가진 useState 변수를 만들어주는데, const yearlyItems = ref([]); 아래처럼 타입을 any로 바꿔주면 된다. const yearlyItems = ref([]); 2024. 1. 30. 이전 1 2 3 4 ··· 13 다음 반응형