일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- Windows
- KAKAO
- enV
- format
- Python
- evaluation
- CUDA
- LLM
- file
- pandas
- Flask
- Container
- Package
- Converting
- Mac
- TORCH
- AI
- list
- PostgreSQL
- GitLab
- Laravel
- git
- docker
- numpy
- Database
- Linux
- DB
- judge
- Paper
- pytorch
- Today
- Total
목록error (2)
Daily Develope
구조 (가정) : api, test, dataset 서비스/api가 필요하고, 각 서비스/api는 도메인별로 구분하기위해 별도 페이지(소스코드)에서 관리 서비스 구현 (api / test / dataset) : 각 서비스는 services 폴더 내에 별도 파일(소스코드)로 구현/관리한다. ### 아래 각 경로에 서비스 구현 # services/api.py # services/test.py # services/dataset.pyapi.py 코드 예시 from flask import Blueprint, request, jsonify api = Blueprint(name="api", import_name=__name__) @api.route('/apis/', methods=['GET..
HTTP Basic: Access deniedㅇ 증상 : git 접근 시 다음과 같은 오류 메시지 출력remote: HTTP Basic: Access deniedfatal: Authentication failed for 'https://...../gitlab/.../....git/' ㅇ 해결 : credential 정보 삭제sudo git config --system --unset credential.helper 'repo_name' does not appear to be a git repository ㅇ 증상 : git의 repository를 찾지 못 함'repo_name' does not appear to be a git repositoryfatal: Could not read from remote ..