[코드팩토리] [초급] Flutter 3.0 앱 개발 - 10개의 프로젝트로 오늘 초보 탈출!
안드로이드 스튜디오에서 iPhone 16 Plus(mobile)에뮬레이터에서 코드를 실행하려고하니 아래와 같은 에러가 뜹니다. 맥북M2 에어2 사용중이고, icloud도 사용 중이고, Dropbox도 사용 중입니다. Test_proj는 맥북의 경우 내문서에 설치해라고 하셔서, 아래 경로에 설치되어 있습니다. Test_proj가 있는 경로: Library/CloudStorage/Dropbox/Mac/Documents/Flutter_develop/ 콘솔창 Running Xcode build... Xcode build done. 28.3s Failed to build iOS app Error (Xcode): Target debug_unpack_ios failed: Exception: Failed to codesign /Users/judy/Library/CloudStorage/Dropbox/Mac/Documents/Flutter_develop/build/ios/Debug-iphonesimulator/Flutter.framework/Flutter with identity -. Could not build the application for the simulator. Error launching application on iPhone 16 Plus. Flutter doctor 결과 (base) judy@MacBook-Air-10 ~ % flutter doctor Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel stable, 3.32.4, on macOS 15.4.1 24E263 darwin-arm64, locale en-KR) [✓] Android toolchain - develop for Android devices (Android SDK version 35.0.1) [✓] Xcode - develop for iOS and macOS (Xcode 16.4) [✓] Chrome - develop for the web [✓] Android Studio (version 2024.3) [✓] VS Code (version 1.101.2) [✓] Connected device (3 available) [✓] Network resources 유사한 질문이 있는건 확인했지만, 답변들이 이해할수 없거나, 원격도움으로 해결된 것 같아서 다시 질문글을 남깁니다. - 학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요! - 먼저 유사한 질문이 있었는지 검색해보세요. - 서로 예의를 지키며 존중하는 문화를 만들어가요. - 잠깐! 인프런 서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요.
[코드팩토리] [초급] Flutter 3.0 앱 개발 - 10개의 프로젝트로 오늘 초보 탈출!
위의 화면은 제 화면입니다 선생님처럼 child - Image.asset - Padding - child 이렇게 관계된 코드 앞에 흰색 직각으로 굵은 선으로 연결되어있지가 않고 그냥 수직선만 그려져 있어서 한눈에 보기가 불편한데 선생님처럼 설정을 바꾸고 싶어요 알려주세요 ㅜㅜ
안녕하세요! pandas 연산기능 강의에서 이해가 가지 않는 부분이 있어 질문 드립니다. df.divide(df.sum(axis=1), axis=0) 위 코드에서 열 축을 따라 왼쪽에서 오른쪽으로 나눗셈이 이루어지는데, 왜 axis=0 인가요? sum과 동일한 방향이면 똑같이 axis=1 이어야 할 것 같은데.. 헷갈립니다.
파이썬 동시성 프로그래밍 : 데이터 수집부터 웹 개발까지 (feat. FastAPI, async, await)
AWS에 Free Tier로 가입했는데, LightSail에서 인스턴스 생성을 클릭하면 403 화면과 함께 아래 글이 뜹니다. 제가 가입시 설정을 잘못 한건지, 최근에 무료로 lightsail 이용이 불가해진 건지 모르겠습니다. AWS에도 문의중인데, 여기에도 문의드립니다. Free account plan access limitations Free account plans have limited access to certain services. If you are using a free account plan, you will need to upgrade to a paid account plan to access Lightsail. Learn more about how to upgrade your account plan
word = 'python' 변수 word 에서 두 번째 글자인 'y' 를 'z' 로 바꾸고 싶어서 word[1] = 'z' 를 실행했더니 TypeError: 'str' object does not support item assignment 에러가 발생했습니다. 이는 문자열이 불변 객체이기 때문인가요? 그리고 특정 위치의 문자열을 치환하는 방법은 무엇인가요?