본문 바로가기

분류 전체보기93

[Python3_Error] conda(콘다) 환경변수 설정 상황 MLFlow (MLOps API) 관련 conda.yaml 파일에 대해 작업을 이어가던 중이었습니다. 아래와 같은 conda 관련 에러 발생했습니다. Could not find Conda executable at conda. Ensure Conda is installed as per the instructions at https://conda.io/projects/conda/en/latest/user-guide/install/index.html. You can also configure MLflow to look for a specific Conda executable by setting the MLFLOW_CONDA_HOME environment variable to the path of the .. 2022. 10. 18.
[Python3_Error] pip version upgrade 상황 pypi에서 검색한 특정 라이브러리를 설치하고자 했습니다. 터미널에 "pip install 라이브러리명"을 입력했습니다. 그 순간, 아래의 error 및 경고가 등장했습니다. WARNING: You are using pip version 21.2.4; however, version 22.2.2 is available. You should consider upgrading via the '내경로\python.exe -m pip install --upgrade pip' command. 해석 해당 pip를 설치하기 위해서는 "현 버전보다 더 상위 버전인 pip install"을 가지고 있어야 함을 인식했습니다. 해결 안내해주는 문구(upgrade)를 입력하며 해결을 할 수 있었습니다. 내경로\python.. 2022. 10. 18.
[Github] 마지막 commit 날짜 변경(수정) 2022년 새해, 목표한 게 있다면 1일 1커밋 잔디깔기! 때때로 commit + push를 잊을 때면, 기록이 남지 않는다는 사실과 당일의 노력이 무산되는 듯한 아쉬움을 남긴 채 다음 날을 맞이하게 된다. 그래서, 이를 해결할 수 있는 방법은 없을까 찾아본 결과! "마지막 commit의 날짜를 변경"하는 간단한 방법을 찾게 돼 정리해본다. 1. Git cmd를 통해 희망하는 레파지토리 경로접근 (cd ~) 2. commit 내역, 특정 날짜로 수정(변경)하기 git commit --amend --no-edit --date "(영문) 요일 월 일 연도 시:분:초 KST" git commit --amend --no-edit --date "Sat 4 Jun 2022 15:15:15 KST" 3. 확인해보기 .. 2022. 6. 9.