Trouble shooting(35)
-
git) detected dubious ownership in repository
git 계정을 공부용과 프로젝트 용을 분리해서 사용하려고 하였는데, 리포지토리 폴더가 소유권에 불일치가 있다고 오류가 떴다. $ git status fatal: detected dubious ownership in repository at 'C:/Users/park/Documents/Dev/알고리즘 공부' 'C:/Users/park/Documents/Dev/알고리즘 공부' is owned by: 'S-1-5-32-544' but the current user is: 'S-1-5-21-1783517126-3184781375-1720212297-1001' To add an exception for this directory, call: git config --global --add safe.directory..
2023.05.22 -
한 컴퓨터에서 git 여러계정 사용 (해결중)
환경: win 11 진행상황: 로그아웃 -> 다른계정 로그인 으로 임시적으로 해결중 계획: 차후 ssh 관련 토큰을 이용해 한 컴퓨터에 다중 계정 사용 가능하게 할것. git 에 관련된 간단한 기록을 먼저 쓴다. git 계정을 프로젝트에 따라 분리하여 사용하였는데, 한 컴퓨터에서 2개의 계정을 쓰려면 다양한 방법이 있다. 하지만 이 글에서는 그냥 가라로 윈도우에서 전환하는 방법을 사용하였다. 아무튼 사진의 위치대로 자격증명 관리자에가서 ! 이곳을 수정하면 되는데 github 의 아이디와 암호(github 할때 로그인할때의 암호) 를 입력하면 오류남 암호에는 토큰 값을 입력하면 된다. 해결되었다! (해결중)
2023.05.22 -
pip install sklearn 오류
환경 win11, python 3.7.9 해결 pip install -U scikit-learn pip install sklearn 잘 깔린거 같아보이는데 그런 이름이 없다. 다시 cmd 창을 보면 sklearn-0.0 이 설치 되었는데 뭔가 이상하다. "pip install sklearn"은 sklearn 이라는 scikit-learn 패키지에 의존성이 있는 버전 0.0의 아무 의미 없는 더미 패키지이다. pip install scikit-learn 으로 설치하게되면 제대로 동작한다. 단순히 import sklearn 만 보고 pip install sklearn 을 썼었는데 공식 문서를 보고 알아보도록 하자.
2023.05.22 -
Slack api bot token(?), app channel add 오류
import pandas as pd import requests from datetime import datetime, timedelta df = pd.DataFrame(df_day) df.index = range(1, len(df) + 1) def send_slack_dataframe_with_grid(api_token, channel, dataframe, message=None): url = "https://slack.com/api/chat.postMessage" headers = { "Authorization": f"Bearer {api_token}", "Content-Type": "application/json" } code_block = f"```\n{dataframe}\n```" if mess..
2023.05.08 -
아두이노 스케치 오류 (Arduino sketch trouble) board
Arduino 오류 메세지 : 아두이노:1.8.19 (Windows 10), 보드:"Arduino Uno" In file included from C:\Users\park\Documents\Arduino\sketch_oct20b\sketch_oct20b.ino:1:0: C:\Program Files (x86)\Arduino\libraries\Keyboard\src/Keyboard.h:29:2: warning: #warning "Using legacy HID core (non pluggable)" [-Wcpp] #warning "Using legacy HID core (non pluggable)" ^~~~~~~ In file included from C:\Users\park\Documents\Arduino..
2022.10.20 -
pandas) 변수의 타입명을 기록하던가 잘 정리하자
보호되어 있는 글입니다.
2022.06.20