'error' 태그의 글 목록
728x90

error 11

[Git] private repository clone (not found 에러 날 경우..)

git clone {git주소} 자꾸 remote: Repository not found. 에러가 난다.. 1. github 로그인 -> 설정 -> Setting 2. Personal Access Tokens -> Tokens(classic) -> 토큰 발급 (*토큰 따로 메모장에 적어두기. 나중에 볼수없음) 3. 터미널에서 입력해주기 나의 닉네임 : 깃헙 내 닉네임(아이디랑 다를 수 있음) 토큰 : 위에서 발급받은 토큰 레포 소유닉네임 : 내 레포가 아닐 경우 소유자의 닉네임. 내 레포면 내 닉네임 git clone https://{나의 닉네임}:{토큰}@github.com/{레포 소유닉네임}/{레포명}.git

CondaHTTPError: HTTP 000 CONNECTION FAILED

패키지를 설치하려고 했더니 다음과 같은 에러메세지가 뜨며 설치를 실패했다! Collecting package metadata (current_repodata.json): failed CondaHTTPError: HTTP 000 CONNECTION FAILED for url Elapsed: - An HTTP error occurred when trying to retrieve this URL. HTTP errors are often intermittent, and a simple retry will get you on your way. If your current network has https://www.anaconda.com blocked, please file a support request with..

에러: JAVA_HOME cannot be determined from the Registry

xlsx 라이브러리를 불러오니 발생한 오류메세지입니다. Error: package or namespace load failed for ‘xlsx’: .onLoad가 loadNamespace()에서 'rJava'때문에 실패했습니다: 호출: fun(libname, pkgname) 에러: JAVA_HOME cannot be determined from the Registry In addition: Warning message: In normalizePath(path.expand(path), winslash, mustWork) : path[1]="C:/Users/user/OneDrive/??": 파일 이름, 디렉터리 이름 또는 볼륨 레이블 구문이 잘못되었습니다 원인 : R의 32, 64 bit와 Java의 32..

[R] 에러: 예기치 않은 '}'입니다 in "}"

if문을 작성하던 중 에러: 예기치 않은 '}'입니다 in "}" 오류랑 유효하지 않은 멀티바이트 문자열이 있습니다 계속 발생했는데, 아무리 작성한 코드를 봐도 오류날 부분이 없었습니다... 찾아보니 R 4.0.0 버전의 오류였습니다.. 해결방법은 R 4.0.0버전을 업그레이드 하거나 for문이나 if문 안에 있는 주석(#)과 멀티바이트 문제를 해결해야 합니다. 이와 관련된 내용은 페이스북 R 유저 그룹 페이지에서 확인하시면 됩니다. (링크 참고!!) https://www.facebook.com/groups/KoreaRUsers/permalink/1960795780719781/ https://www.facebook.com/groups/krstudy/posts/1563477293826537/

ERROR: Could not install packages due to an OSError

pip install git+git://github.com/haven-jeon/PyKoSpacing.git 한국어 전처리 패키지를 conda에서 설치하려고 하는데 다음과 같은 에러메세지가 출력되었습니다 ERROR: Could not install packages due to an OSError 해결!! 1. Anaconda Prompt를 관리자실행으로 열기 2. --user 옵션 주기 pip install --user git+git://github.com/haven-jeon/PyKoSpacing.git Successfully installed ~~ 라는 메세지와 함께 패키지 설치가 성공했습니다.

[python] SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 78 크롬드라이버 버전 오류

from selenium import webdriver driver = webdriver.Chrome("C:/Users/Desktop/chromedriver_93.exe") # 크롬드라이버 파일 경로 driver.get('http://www.google.com/') # 셀레니움으로 접속하고자 하는 url SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 78 크롬드라이버의 버전을 업데이트 해줘야 합니다! 1. 현재 크롬의 버전 확인하기 2. 버전에 맞는 크롬드라이버 다운로드 https://chromedriver.chromium.org/download..

XGBoost 설치 에러

XGBoost 설치는 아나콘다 환경에서 쉽게 설치가 가능합니다. Windows 기반에서 설치하려면 아나콘다 command 창에서 아래와 같이 명령어를 입력하면 됩니다. conda install -c anaconda py-xgboost 무슨 일인지 에러가 나는데 읽어보니 버전 오류인 것 같네요 1. xgboost package 다운받기 https://www.lfd.uci.edu/~gohlke/pythonlibs/ 위의 사이트에 들어가서 'xgboost'라고 검색하여 본인 python 버전과 컴퓨터 사양에 맞는 whl파일을 다운 받습니다. 저의 경우 python 3.8이고 윈도우 64bit라서 사진에 밑줄 친 파일을 다운 받았고, 폴더(C:\Users\Administrator\anaconda3\Lib\sit..