Error 구글 colab에서 mecab을 설치 후 다음과 같은 명령어를 실행했더니 에러가 발생하였다. # mecab 설치 !git clone https://github.com/SOMJANG/Mecab-ko-for-Google-Colab.git %cd Mecab-ko-for-Google-Colab !bash in...
UsageError: Line magic function %%writefile not found.
Error # jupyter notebook 상에서 파일 생성 명령어, 이미 있다면 덮어씌운다. %%writefile fibo.py def fib(n): a, b = 0, 1 while b<n: # 조건이 true인 경우에만 실행되는 반복문 print(b, end=' ') ...
unable to open swap file “Filename” for recovery impossible
Error python 파일을 고치기 위해 vim으로 열었지만 이전과는 다르게 다음과 같이 에러가 나면서 이상해졌다. Error 해결 메모리 공간이 부족하거나 알 수 없는 이유로 인해서 편집 이력이 있었던 파일의 스왑(SWAP) 파일을 열지 못하여 발생하는 문제이다. 아니나 다를까 df -h 명령으로 메모...
Attempting to deserialize object on a CUDA device but torch.cuda.is_available() is False. If you are running on a CPU-only machine, please use torch.load with map_location=torch.device('cpu') to map your storages to the CPU.
Error GPU로 학습하여 저장한 모델 전체를 cpu로 불러오니 에러가 발생하였다. Error 해결 코드를 다음과 같이 변경하여 불러오니 해결되었다. //변경 전 model1 = torch.load('./7emotions_model.pt') //변경 후 model1 ...
python3: can't open file 'python3': [Errno 2] No such file or directory
Error pyspark를 jupyter notebook으로 사용을 하기 위해 환경변수 설정을 해주었고 다시 되돌리기 위해 환경변수를 제거 했지만 그대로 jupyter notebook으로 돌아감 결국 고치려다 다음과 같이 환경변수를 설정해줬지만 에러가 발생 #export PYSPARK_DRIVER_PYTHON=jupyt...
FileZilla 500 OOPS: chroot
Error vsftpd를 설치 후 FileZilla로 연결 요청을 보냈지만 다음과 같은 에러가 발생 Error 해결 SELinux의 방화벽을 닫아준다. setenforce 0 SELinux를 임시로 비활성화 시킨다. getenforce 를 하면 p...
Execution failed for task ':MemberApp.main()'.
에러 발생 다음과 같은 에러가 발생하였다. Execution failed for task ':MemberApp.main()'. 에러 해결 설정에 들어가 build를 gradle에서 IntelliJ IDEA로 둘 다 바꿔줬다.
로컬에서 가상환경의 IP로 접근이 불가능합니다.
에러 발생 가상환경의 ip 주소는 192.168.56.100이고 port 번호 9870을 통해 hadoop에 들어가려고 했으나 다음과 같이 실패 해결 방법 가상환경의 방화벽을 내리니 해결할 수 있었다. 방화벽 내리는 방법 systemctl stop firewalld systemct...
Datanode가 브라우저에 하나밖에 안 나옵니다.
에러 발생 hadoop을 실행했고 정상적으로 잘 작동하는거 같으나 브라우저로 접속하여 datanodes를 확인해보면 datanode가 하나밖에 보이지 않는다. 문제 해결 /etc/hosts에 들어가 ip 등록이 잘 되어 있는지 확인한다. vi /etc/hosts 위와 같이 hadoop...
백준 python RecursionError
Error 백준 문제를 풀던 도중 recursion error가 발생하였다. Error 해결 백준의 경우 python 재귀함수의 호출 스택이 1000까지로 설정되어 있다. 다음을 코드에 추가 시켜 함수 스택 limit을 조절할 수 있다. import sys sys.setr...
- RuntimeError: CUDA error: device-side assert triggered
- The dependencies of some of the beans in the application context form a cycle:
- OSError: [Errono 48] Address already in use
- AttributeError: Can't get attribute 'BERTClassifier' on module '__main__' from 'path'
- transformers Installation Error - Failed building wheel for tokenizers