전체 글249 ✖ WARNING: Couldn't retrieve installed python packages. ✖ WARNING: Couldn't retrieve installed python packages. We cannot verify your python installation is setup correctly. Please, make sure you have both 'python' and 'pip' installed. Error while validating Python packages. Error is: Command failed: python -c "import six" python: error: Failed to locate 'python'. xcode-select: Failed to locate 'python', requesting installation of command line develo.. 2023. 1. 17. WARNING: Xcode is not installed or is not configured properly. ✖ WARNING: Xcode is not installed or is not configured properly. You will not be able to build your projects for iOS or run them in the iOS Simulator. To be able to build for iOS and run apps in the native emulator, verify that you have installed Xcode. x code install but this message is output we need setting in xcode like this! (prefrences->locations->CommandLineTools) 2023. 1. 17. git pull 안됨 현상: git branch 하나따서 pull & merge 받는데 정상작동 안함 에러메세지 : yongsinkwon@yongsinui-MacBookPro 폴더명 % git pull There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details. git pull If you wish to set tracking information for this branch you can do so with: git branch --set-upstream-to=origin/ yongsin 해결 방법 : vi code에서 publish 해주니.. 2023. 1. 12. n 버전 변경시 npm 삭제 안됨 n 으로 설치 시 npm 안지워지는 현상 발생 완벽 삭제 이후 https://blog.userinsight.co.kr/m/3 Mac 에서 Node 완전삭제 후 재설치하기 개요시스템을 관리하다 보면 예기치 못한 상황들이 종종 발생하기 마련이죠.이 글에서는 Mac 환경에서 Nodejs를 완전히 삭제 후 다시 설치하는 방법을 안내합니다. 삭제하기(brew)다음 명령어를 이 blog.userinsight.co.kr https://velog.io/@minidoo/Node-mac에서-Node.js-완전히-삭제하기 nvm 설치 https://memostack.tistory.com/274 2023. 1. 11. laravel trans()함수 통하여 다국어 적용 in php trans('message.data1') resource/assets/language/kr.json resource/assets/language/ch.json resource/assets/language/jp.json 각 파일별 { "message":{ "data1": "메세지 입력처리" } } 다국어 사이트에서 같은 변수명으로 다국어처리를 해줄 필요가 있다 이경우 trans()함수를 사용해서 처리해주자 2023. 1. 10. vue form 처리방식 export default { data(){ return { formData: {} } }, methods:{ async submit(){ me.formData.program_id = me.selectedProgram; } let response = await axios.post('/api/api_url', me.formData); } ... 기존 html은 아래와 같이 데이터를 처리 했으나 vue는 form 태그를 노출 시키지 않고 데이터 바인딩 처리를 하여 form을스크립트로 처리한다. 이경우 크롤링으로 데이터를 긁어가고 로봇으로 접근하여 해킹시도 하는 것을 방지 할 수 있다. 2023. 1. 10. laravel에 vue 세팅하기 composer global require laravel/installer laravel new 프로젝트명 cd 프로젝트명 composer require laravel/ui php artisan ui vue --auth npm install npm run dev .env 디비 설정 php artisan migrate 2023. 1. 2. kcp 모바일 인증 '[CS01] 인증정보가 변조 되었습니다.' m1 arm64 adm64 문제 해결 검색 결과 대부분의 경우 1. 권한 문제로 ct_cli 파일 의 권한을 755 이상으로 변경 하니 해결되었다고 한다. 팀원들도 동일했지만 나는 여기서 해결 안됨. 2.ct_cli 파일이 깨진건가 싶어 새로운 다운받은 파일로 대체해보았다. 해결안됨 3.리눅스로 실행해보니 qemu-x86_64: Could not open '/lib64/ld-linux-x86-64.so.2': No such file or directory 에러가 표출, window 로 실행시 문제 없어 보였는데 리눅스 환경에서는 이런 에러가 표출되고있었다. docker laradoc 환경세팅시 32비트로 세팅 된것으로 생각해서 php-fpm과 workspace 를 새로 빌드 ---- 2029 :13:50 추가 확인 사실 m1 이슈로 plat.. 2022. 12. 29. php laravel mac vi에서 ctrl + click 시 파일 상세 보기 laravel go to view tool 다운로드 다운로드 후 command + click 시 정상작동 2022. 12. 29. mac에서 압축 풀기 후 파일 실행 맥에서 unix 실행 파일 텔레그램으로 전송하니 파일 깨지는 현상 발생 2022. 12. 29. Mac dnsmasq 구축 호스트(Mac PC)와 내부망을 연결하고 와이파이를 공유하여 게이트웨이 역할을 하도록 처리호스트(Mac PC)에 dnsmasq 를 설치하여 DNS 서버를 구축합니다 그러면 단말기는 호스트(Mac PC)에 와이파이로 붙어서 도메인을 사용하여 내부망과 통신할 가능 내부망 서버에서 웹 작업 후 단말기를 통하여 도메인 접속 후 정상작동 확인 가능 1. Homebrew 설치하기 다음 명령어를 입력합니다 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 2. dnsmasq 설치하기 다음 명령어를 입력합니다 brew install dnsmasq 3. dnsmasq 설정하기 설정 디렉토리를 만.. 2022. 12. 27. laravel breeze:install @vite(['resources/css/app.css', 'resources/js/app.js']) 브리즈 인스톨하여 로그인 회원가입 기능 붙이는데 vite가 정상작동하지 않는다. 참고자료 : https://laracasts.com/discuss/channels/laravel/how-to-solve-assets-error-in-laravel-9-vite https://laracasts.com/discuss/channels/laravel/how-to-solve-assets-error-in-laravel-9-vite laracasts.com 원인 :버전 호환성 문제 해결책 try to use this: composer require laravel/breeze:1.9.4 php artisan breeze:install npm install npm install autoprefixer@10.4.5 --save.. 2022. 12. 20. 이전 1 2 3 4 5 ··· 21 다음