프로그래밍
-
dataspell 사용 설정프로그래밍/python 2023. 2. 28. 16:51
python interpreter 설정 설정 - 프로젝트 - python interpreter 에서 add interpreter를 클릭하여 컴퓨터에 설치된 conda 경로를 설정한다. 쥬피터 서버에도 동일하게 anaconda 폴더 위치를 설정한다. 이렇게 설치하고 jupyter 파일을 실행하는데 아래와 같은 오류 발생 Bad file descriptor (C:\ci\zeromq_1616055400030\work\src\epoll.cpp:100) https://stackoverflow.com/questions/65690540/python-stopped-working-on-jupyter-startup This error is related to your pyzmq library. It also trouble..
-
자주쓰는 github 명령어 정리프로그래밍 2023. 2. 18. 14:26
자주 쓰는 github 명령어 정리 git config --global user.name ro**** git config --global user.email ****@****.com # 저장소의 변경 사항 가져오기 + 자동 merge git pull # 변경된 파일 추가 git add README.md # 변경된 파일들 저장소로 commit 하기 git commit -m "update README.md" [master 4c07bfe] update README.md 1 file changed, 2 insertions(+), 2 deletions(-) # git status 확인 git status On branch master Your branch is ahead of 'origin/master' by 1..
-
안드로이드 오류 - Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLEbe specified when creating a PendingIntent.프로그래밍/ 안드로이드어플만들기 2023. 1. 23. 22:18
안드로이드 어플에 커스텀탭 테스트하려는데 아래와 같은 에러 발생 오류 메세지가 자세하게 나와있어서 그냥 따라가면 간다. 안드로이드 버전 31부터 pendingintent에서 FLAG_IMMUTABLE 또는 FLAG_MUTABLE만 가능한데 가능하면 FLAG_IMMUTABLE을 쓰라고 한다. java.lang.RuntimeException: Unable to start activity ComponentInfo: java.lang.IllegalArgumentException: com.butlerdiary.butlerdiary: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified w..