분류 전체보기621 맥에서 주피터 노트북 설치하기 파이썬이 설치되어있는지 버전 확인으로 확인한다. ## python version 3 python3 -V ## python version 2 python -V pip 을 업그레이드 해준다. pip3 install --upgrade pip 주피터 설치 명령어를 실행한다. pip3 install jupyter 주피터 실행 명령어로 주피터를 실행한다. jupyter notebook 2022. 3. 20. [spring] HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=45s216ms). 다음과 같으 오류가 뜨는건 Intellij 에 코드를 돌리고 사용하던 맥북이 잠들기 모드에 들어갔을 때 생긴 문제였다. garbage collection was running for a longer time within two executions of housekeeping thread, trying to free up some memory(e.g exactly when an application thread was running a 'select' query). Since the GC was blocking all application threads including the housekeeping thread, as such my suspicion is that the clock "leapt" due .. 2022. 3. 17. [python] 파이썬에서 날짜 포맷 변경하기 파이썬에서 버전 1 다음과 같은 날짜 포맷을 2020. 1. 23. . 2020. 3. 4. 아래와 같이 변환하고자 한다. 2020-01-23 date_row 부분에 변경하고자 하는 내용을 배열로 넣어준다. date_list = pd.DataFrame(date_row, columns=['date']) date_list['date'] = date_list['date'].str.replace('. ', '-') date_list['date'] = date_list['date'].str.replace('.', '-') date_list['date'] = date_list['date'].str.strip('-') date_list['date'] = pd.to_datetime(date_list['date'], f.. 2022. 3. 16. psql 사용시 쉘 스크립트로 postgres password 바로접속 컨테이너 내부에 있는 db를 외부에서 접근해서 사용하고자 한다. bash 에서 psql 접속 후 sql문을 바로 사용하려고 한다. psql -U hostname -d postgres 다음과 같이 사용하면 비밀번호를 입력하라는 창이 뜬다. 비밀번호 입력없이 사용하고자 한다면 아래 명령어를 사용하면 된다. [root ~]# PGPASSWORD=pass psql -U [MyUsername] [root ~]# PGPASSWORD=pass psql -U [MyUsername] [myDatabaseName] psql postgresql://[user[:password]@][host][:port][,...][/dbname][?param1=value1&...] psql "postgresql://$DB_USER:$DB_.. 2022. 3. 15. 북마크 내보내기 크롬을 열고 우측 상단의 더보기를 클릭한다. 북마크 관리자를 선택한다. 우측 상단에 점 세개를 클릭하면 북마크 내보내기 메뉴가 있다. 북마크를 내보내면 html 파일이 생성되는데 링크 형식으로 확인할 수 있다. 2022. 3. 14. [Bootstrap5] me-auto 의미 부트스트랩 class 명에서 me-auto의 의미는 margin end-auto 로 마진 값을 자동으로 설정해준다. 참고 https://stackoverflow.com/questions/66022577/what-the-meaning-of-bootstrap-5-class-me-auto What the meaning of Bootstrap 5 class " me-auto " This is bootstrap 5 navbar ul part code. my problem is: I can't change ul position left to right. what the meaning of bootstrap 5 class "me-auto" Home ... stackoverflow.com 2022. 3. 10. 이전 1 ··· 36 37 38 39 40 41 42 ··· 104 다음