본문 바로가기

Fix8

Python ValueError: 10진수 기반으로 int()에 대한 잘못된 리터럴입니다: '', ValueError: invalid literal for int() with base 10: '' 질문 나는 내 코드로부터 다음과 같은 오류를 받았다: ValueError: invalid literal for int() with base 10: ''. 이게 무슨 뜻인가요? 왜 발생하고 어떻게 고칠 수 있을까요? 답변 에러 메시지는 int에 제공된 문자열을 정수로 변환할 수 없다는 것을 의미합니다. : 뒤에 있는 부분은 제공된 문자열을 보여줍니다. 질문에서 설명된 경우, 입력은 빈 문자열로 작성되었습니다. ''입니다. 여기에 또 다른 예제가 있습니다 - 부동 소수점 값을 나타내는 문자열은 int로 직접 변환할 수 없습니다: >>> int('55063.000000') Traceback (most recent call last): File "", line 1, in ValueError: invalid li.. 2023. 7. 24.
Flutter 플러터 앱의 빌드 및 버전 번호를 설정하는 방법은 무엇인가요?, How to set build and version number of Flutter app 질문 안드로이드 및 iOS 설정에 들어가지 않고 Flutter 앱의 버전 이름과 버전 코드를 설정하는 방법은 무엇인가요? pubspec.yaml에는 다음과 같이 있습니다. version: 2.0.0 하지만 빌드 번호를 설정할 수 있는 곳을 보지 못합니다. 답변 버전 및 빌드 번호 설정하기 pubspec.yaml에서 버전 이름과 버전 코드 번호를 동시에 업데이트할 수 있습니다. + 기호로 구분하면 됩니다. 예를 들어: version: 2.0.0+8 이는 다음을 의미합니다. 버전 이름은 2.0.0입니다. 버전 코드는 8입니다. 이 내용은 새 프로젝트의 문서에 설명되어 있습니다. (하지만 오래된 프로젝트에서 작업 중이라면 삭제한 것일 수도 있습니다): 다음은 애플리케이션의 버전과 빌드 번호를 정의합니다. 버전.. 2023. 7. 12.
"Flutter build iOS에서 오류 발생: 식별자가 있는 확장 지점을 찾지 못했습니다.", Flutter build iOS got error: Requested but did not find extension point with identifier 질문 저는 방금 Xcode 13.3-beta로 업그레이드하고, 플러터 프로젝트를 실행했을 때 다음 오류가 발생했습니다: Error output from Xcode build: ↳ 2022-03-02 17:45:38.148 xcodebuild[62848:6695836] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionSentinelHostApplications for extension Xcode.DebuggerFoundation.AppExtensionHosts.watchOS of plug-in com.apple.dt.IDEWatchSupportCore 2022-03-02 17:45:38.148 xcodebuil.. 2023. 6. 12.
Flutter 코코아팟은 "Firebase/CoreOnly" 팟의 호환 가능한 버전을 찾을 수 없습니다., CocoaPods could not find compatible versions for pod "Firebase/CoreOnly" 질문 I've update my flutter package to the last versions and now IOS doesn't work anymore. When I try to update the pods it shows this error: [!] CocoaPods could not find compatible versions for pod "Firebase/CoreOnly": In Podfile: cloud_firestore (from `.symlinks/plugins/cloud_firestore/ios`) was resolved to 0.0.1, which depends on Firebase/Firestore (~> 6.0) was resolved to 6.0.0, which depends .. 2023. 5. 26.