개발/에러해결48 sudo: export: command not found, sudo export 하고 싶을 때 에러 내용 sudo: export: command not found 현재 환경 변수 설정을 유지하면서 루트 권한으로 명령어를 실행시키고 싶을 때가 있다. 이때 sudo export로 루트 유저에서의 환경 변수를 설정하려고 시도하면 sudo export ~ 시 위와 같은 오류를 출력하며 실행되지 않는다. 에러 원인 export는 shell의 내부 상태에 영향을 주는 built-in command(내장 명령어)이다. 이와 같이 shell의 내부 상태에 영향을 주는 built-in command는 sudo로 실행할 수 없다. 예를 들면, 현재 작업 디렉터리를 바꾸는 cd 또한 sudo: cd: command not found로 오류를 출력한다. (. 과 같이 현재 작업 디렉터리 같은 shell 내부 상태를 요.. 2022. 10. 31. UnityException: Build path contains project built with "Create Visual Studio Solution" option, which is incompatible with current build settings. Consider building your project into an empty directory. 에러 내용 UnityException: Build path contains project built with "Create Visual Studio Solution" option, which is incompatible with current build settings. Consider building your project into an empty directory. "Create Visual Studio Solution"을 체크하지 않았음에도 위 에러가 발생합니다. 에러 원인 프로젝트 루트 디렉터리에 빌드를 시도하였기 때문입니다. 해결 방법 에러 메시지에서 말하듯이 비어있는 디렉터리에 빌드하면 됩니다. (새로운 디렉터리를 만들어서) 예시 자료 (rpg라는 루트디렉터리에 빈 디렉터리 rpg/rpg를 만.. 2022. 10. 22. badrequestexception: 400 cannot get legacy acl for an object when uniform bucket-level access is enabled 에러 내용 gsutil acl get gs://$MY_BUCKET_NAME_1/cat.jpg > acl.txt cat acl.txt 을 Cloud Shell에서 실행하면 badrequestexception: 400 cannot get legacy acl for an object when uniform bucket-level access is enabled 라는 오류를 띄우고 정상적으로 동작하지 않습니다. Architecting with Google Kubernetes Engine: Foundations의 1주 차 과제를 하는데 발견한 문제입니다. 에러 원인 bucket access control 이 uniform으로 설정된 경우 acl을 사용할 수 없습니다. 해결 방법 bucket access contr.. 2022. 10. 22. 국가연구자번호 조회결과가 없습니다 : 해결방법 에러 내용 원래 잘 사용하고 있던 연구자번호가 조회 결과가 없다고 나왔습니다. 에러 원인 시스템통합 및 개편 또는 회원가입이 생겨서 그렇다고 합니다. 해결 방법 이전에 연구자번호를 발급받았을 때와 같은 정보를 입력하여 회원가입을 합니다. 그러면 이전과 같은 연구자번호가 나올 확률이 높다고 합니다. 참고 자료 iris 고객센터 : 1877-2041 2022. 10. 22. SyntaxError: Unexpected token '<' 에러 내용 SyntaxError: Unexpected token ' 2022. 10. 22. SyntaxError: Cannot use import statement outside a module 에러 내용 SyntaxError: Cannot use import statement outside a module 에러 원인 import는 type이 module인 파일에서만 쓸 수 있다. 해결 방법 1. package.json에서 type을 module이라고 명시해준다. 수정 전 코드 { "name": "front", "version": "0.1.0", "private": true . . . } 수정 후 코드 { "name": "front", "version": "0.1.0", "private": true, "type": "module" . . . } 2. 또는 import 대신에 require을 사용한다. 수정 전 코드 import React from "react"; 수정 후 코드 const Reac.. 2022. 10. 22. 이전 1 ··· 4 5 6 7 8 다음