pycharm 에서 jupyter 동작 안할때 처리 방법
jupyter를 설치해 주자 pip install jupyter
- 카테고리 없음
- · 2023. 12. 8.
jupyter를 설치해 주자 pip install jupyter
잘실행되던 node가 갑자기 실행해보니 아래와 같이 에러가 발생 node-telegram-bot-api deprecated Automatic enabling of cancellation of promises is deprecated. In the future, you will have to enable it yourself. See https://github.com/yagop/node-telegram-bot-api/issues/319. node:internal/modules/cjs/loader:1099:14 제일 쉬운 해결방법은 제일 상단에 아래와 같이 선언 process.env.NTBA_FIX_319 = 1 자세한 내용은 아래 글 참조 https://stackoverflow.com/questions/6..
ERROR: Could not install packages due to an OSError: Cannot move the non-empty directory ___ Lacking write permission to ___ pip install 중에 위와같은 에러가 났을때... 맨뒤에 --user 옵션을 붙여주면 에러없이 설치가 된다. --user는 user범위내에서 설치하라는 뜻....
https://jekyllrb-ko.github.io/ Jekyll • Simple, blog-aware, static sites Transform your plain text into static websites and blogs jekyllrb.com 사이트에 나온 튜토러얼대로 ~ $ gem install bundler jekyll ~ $ jekyll new my-awesome-site ~ $ cd my-awesome-site ~/my-awesome-site $ bundle exec jekyll serve # => 브라우저로 http://localhost:4000 에 접속 실행하면 scss와 관련된 경고가 주루룩 뜬다.. Deprecation Warning: Using / for division ou..
https://madplay.github.io/post/file-permission-error-while-executing-gem gem 권한 에러 해결하기(Gem::FilePermissionError) 루비(Ruby)의 패키지 매니저인 gem 실행하다가 발생하는 FilePermissionError 권한 오류 해결하기 madplay.github.io 아니 이게 이렇게까지 해서 해결해야하는것인가.....
2023.08.06 - [Flutter] - [flutter] mac 환경설정~ flutter 로 프로젝트 생성 flutter create sample vscode로 열어보면 아래와 같은 구조를 확인할 수 있다. 그다음 extention 설치 dart flutter vs 코드 하단에 빨간박스를 클릭하면, 시뮬레이터를 선택해서 실행할 수 있다. ios 시뮬레이터를 실행해 놓은 상태로 오른쪽 상단에 디버깅 실행 디버깅 시작 버튼을 클릭하면 build 후 (최초에는 조금 오래걸린다) 앱상에 데모앱이 실행되는걸 확인할수 있다. vscode에 widget inspector도 있고,, 값을 변경하고 저장하면 앱 시뮬레이션에서 바로 저장되는것을 확인할 수 있다. 자 이제 hello world를 찍어보자.. 샘플은 버..