분류 전체보기 205

[Flutter] Error: The await expression can only be used in an async function. (Solved)

Error: The await expression can only be used in an async function. (Solved) 💢 Error 메시지 The await expression can only be used in an async function. Try making the function body with either 'async' or 'async*'. A value of type 'future' can't be assigned to a variable of type 'list'. try changing the type of the variable, or casting the right-hand type to 'list'. 📍 Trial and Error1 GetFromServer()..

Develop/Flutter 2022.01.14

[Flutter] 플러터 벼락치기⚡ (일기 앱 만들기)

플러터 벼락치기⚡ 목차 0. 개요 1. Flutter 개발환경 세팅 2. Flutter 프로젝트 생성 3. Flutter 기본 개념 공부 4. Flutter 연습하기(간단한 투두앱 만들기) 5. 다이어리 앱 만들기(실전) 0. 개요 📍 기간 2021-12-29 ~ 2022-01-12 (2주) 📍 현재 나의 상황 플러터 경험 X 리액트 네이티브로 투두 앱 개발 경험 1회 (DB 사용 안 함) 인공지능 프로젝트에서 다이어리 앱 개발 클라이언트를 맡음 짧은 시간 안에 플러터 개발 공부를 하고 플젝을 완성시켜야 함 📍 계획 일단 유튜브 코딩셰프의 플러터 강의 조금 순한맛을 빠르게 수강하고, 간단한 투두앱을 클론코딩해서 플러터란 아이를 알아갈 생각이다. 모든 과정을 이 포스트에 기록할 것이고, 각 목차마다 링크를..

Develop/Flutter 2021.12.29

파이썬 2.7 버전 가상환경에서 jupyter notebook 실행하기

아나콘다 가상환경에서 jupyter notebook 실행하기 1. 가상환경 활성화 conda activate 가상환경이름 2. 가상환경에 jupyter notebook 설치하기 (trial and error) pip install jupyter notebook 💢 Error 근데 import error가 발생했다. ImportError: cannot import name ‘PackageFinder’ ➰ Trial and error 1 pip ugrade를 해도 똑같은 import error가 발생. https://exerror.com/importerror-cannot-import-name-packagefinder/ [Solved] ImportError: cannot import name 'PackageF..

반응형