ETC(15)
-
window 에서 VS code 설치 하기
[1. 참고_jupyter 설치] https://hyunki99.tistory.com/90[2.참고_ 1. VS code 를 설치하고 추가 작업 설정 후 인스톨2. 실행 > theme 설정( ctrl +k)3. Extension > korean 언어팩 설치 > 재부팅 4. anaconda 설치 > sign up> mail link down > install > anaconda prompt check Anaconda | The Operating System for AIDemocratize AI innovation with the world’s most trusted open ecosystem for data science and AI development.www.anaconda.com5. VSCODE p..
2024.12.26 -
[Error] "'conda : 'conda' 용어가 cmdlet, 함수, 스크립트 파일 또는 실행할 수 있는 프로그램 이름으로 인식되지 않습니다."
참고]https://hyunki99.tistory.com/90에러의 원인 1. VScode 의 terminal 이 power shell 로 설정 됨.Terminal이 "Windows PowerShell"로 설정되어 있다면 이를 Command prompt로 변경 Ctrl + Shift + P 를 누르고 "Terminal: Select Default Profile"을 입력하여 실행합니다.기존에 켜져있던 terminal을 우상단 휴지통 모양의 아이콘을 눌러 삭제한 후, Ctrl + Shift + P 를 누르고 "Python: Select Interpreter"을 입력하여 실행 cntrl + J > 커맨드창 재실행 > conda 확인
2024.12.26 -
[Google][SpreadSheet] 원화 포맷팅
구글 스프레드 시트를 작성 할때 가격 표기 어떻게 할까?1. Format>Number>Custom currency2. South Korean Won 클릭!3. Custom number format > [$₩]#,##0 에서 ₩를 지워주면 ₩ 없는 포메팅을 할수가 있다.
2024.12.24 -
# [Error][Pandas]UnicodeDecodeError: 'utf-8' codec can't decode byte 0x8c in position 15: invalid start byte
📌 본 포스팅은 utf-8 error 에 대한 내용을 다룹니다.📌 [참고]🐞 UnicodeDecodeError: 'utf-8' codec can't decode byte 0x8c in position 15: invalid start byte 시도별 전출입 인구수.xlsx 읽어올때 utf 8 에러 가 발생. 📌📌📌 [해결] df = pd.read_excel("./K11DataVisual-6일차/part04/data/시도별 전출입 인구수.xlsx", engine='openpyxl',header=0)engine 으로 openpyxl 설정하고 header = False 설정을 하여 해결함.
2024.12.19 -
Mac OS 에서 압축한 파일을 Window OS 로 보내면 빈 폴더로 보이는현상
1. 문제 상황Mac OS 로 압축하면 Mac resource 까지 합쳐저서 압축을 하기 때문에 윈도우에서는 압축을 풀어도 볼수가 없다. Mac resource 를 제외하고 압축을 하면 윈도우에서도 압축 파일을 열수가 있다.2. 해결 방법https://www.keka.io/en/ 홈페이지에서 App store 가 아닌 밑에 구버전 을 다운로드 한다. keka 설치 후 화면에 압축할 폴더를 당겨서 넣는다. https://extrememanual.net/53660
2024.12.19 -
[Error][JS]Uncaught (in promise) Error: A listener indicated an asynchronous response by returning true, but the message channel closed before a response was received
[상황] 코드 블록 상단에 맥 상단바 나오게 만드는 중 다음과 같이 나왔다 코드 블럭이 이렇게 나온다.. 상단바 가 적용이 안되는 상황.. codeblock. js 에는 이상 이없고 css codeheader 도 잘 추가 되어있다. inspect 를 긁으니 pre 라는 곳에서 에러가 나는 것같다.ㅏ [에러 메세지] Uncaught (in promise) Error: A listener indicated an asynchronous response by returning true, but the message channel closed before a response was received [참고] https://zorba10004.tistory.com/360 vendor.js:1 Uncaught..
2024.12.18