AI(5)
-
Mysql password 분실 - ERROR 2059 (HY000): Authentication plugin 'auth_gssapi_client' cannot be loaded:
Mysql password 분실 - ERROR 2059 (HY000): Authentication plugin 'auth_gssapi_client' cannot be loaded: mysql 설치후 만난 최대의 난제 비번어디감? ERROR 2059 (HY000): Authentication plugin 'auth_gssapi_client' cannot be loaded: 이게 왜 뜨는지 모르겠지만 찾아야 한다. 패스워드 탖기 고군분투를 시작 하겠습니다. ㅜㅜ MYSQL 분실 패스워드 새로 등록 Mysql 사용중시 상태로 만들어 주도록 하겠습니다. 실행되어 있스면 정시 시켜 줘야 합니다. 윈도우키 > 서비스 > Mysql 상태 사용중지 해주시면 됩니다. net stop mysql *주의 net stop m..
2023.07.17 -
[Window] MySQL Install
MySQL Install MySQL은 가장 인기 있는 오픈 소스 데이터베이스 관리 시스템 중 하나입니다. Mysql 설치는 최소 설치를 기준으로 하고 있습니다. 설치과정 1.Mysql 다운로드 홈페이지 접속 아래의 링크로 Mysql 다운로드 링크로 이동합니다. https://www.mysql.com/downloads/ MySQL :: MySQL Downloads MySQL Cluster CGE MySQL Cluster is a real-time open source transactional database designed for fast, always-on access to data under high throughput conditions. MySQL Cluster MySQL Cluster Manage..
2023.07.16 -
python 간단한 ai 코드
python 간단한 ai 코드 위해서 sklearn 설치해야 합니다. SLEARN 설치 pip install scikit-learn MAIN CODE from sklearn.datasets import load_iris from sklearn.model_selection import train_test_split from sklearn.neighbors import KNeighborsClassifier from sklearn.metrics import accuracy_score # 데이터 로딩 iris = load_iris() # 데이터 분할 및 전처리 X_train, X_test, y_train, y_test = train_test_split(iris.data, iris.target, test_size..
2023.07.01 -
파이썬 로그 남기기 Logging(Log, Logger, Logging)
Logging 개발을 하다보면 코드의 대략적인 출력값 그리고 그자리에서 애러가 발생하는지 않하는지를 알기 위해서 Log를 찍어줄 필요가 있다. Logging 파이썬 개발자는 아니지만 취미로 파이썬 공부를 하다보면 로그를 찍기위해서 이게 필요하다고 느껴 글을 작성해봅니다. Logggin 모듈 별도의 설치 필요없이 선언만 해주면 바로 사용할 수 있습니다. import logging Loggin Defort 는 waring이며 DEBUG < INFO < WARING < ERROR < CRITICAL 순입니다. import logging # 로그 생성 및 설정 logger = logging.getLogger(__name__) logger.setLevel(logging.DEBUG) # 로그 파일에 대한 설정 lo..
2023.07.01 -
chatGPT가 만든 스네이크 게임(Snake Game)
최근 이슈 되고 있는 chat gpt 이거 정말로 코딩도 해주는지 시험삼아서 한번 해봤습니다!! Score: 0 10번정도 수정을 걸쳐서 순수하게 GPT만드로 코드를 만들었습니다. 생각보다 잘하는데요? 아래는 실행 이미지입니다.
2023.04.21