본문 바로가기

Windows17

Flutter 안드로이드 스튜디오가 설치되어 있지 않은 경우, 기계에 안드로이드 스튜디오가 설치되어 있어도 플러터 닥터를 실행합니다., Android Studio (not installed) , when run flutter doctor while Android Stud.. 질문 맥에서 flutter doctor 명령을 실행하면 아래와 같이 표시됩니다. 이미 Android Studio를 설치했으며 Android Studio에서 ios 빌드를 실행할 수 있습니다. [!] Android Studio (not installed) flutter doctor 출력: Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel stable, v1.12.13+hotfix.5, on Mac OS X 10.14.5 18F132, locale en-GB) [✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2) [✓] Xc.. 2023. 6. 18.
Python 파이썬이 실행 중인 운영 체제를 식별하는 방법, How to identify which OS Python is running on 질문 What do I need to look at to see whether I'm on Windows or Unix, etc.? 나는 윈도우 또는 유닉스 등에서 작동하는지 어떻게 확인해야 하나요? 답변 >>> import os >>> os.name 'posix' >>> import platform >>> platform.system() 'Linux' >>> platform.release() '2.6.22-15-generic' platform.system()의 출력 결과는 다음과 같습니다: Linux: Linux Mac: Darwin Windows: Windows 참조: platform — 기본 플랫폼 식별 데이터에 대한 액세스 2023. 6. 10.
Python 파이썬 setup.py 언인스톨, python setup.py uninstall 질문 저는 python setup.py install으로 파이썬 패키지를 설치했습니다. 어떻게 제거하나요? 답변 Note: python setup.py install 사용을 피하십시오. 대신 pip install .을 사용하십시오. 수동으로 모든 파일을 제거하고, 설치가 수동으로 수행한 기타 작업도 취소해야 합니다. 모든 파일 목록을 모르는 경우 --record 옵션을 사용하여 다시 설치하고 생성된 목록을 확인할 수 있습니다. 설치된 파일 목록을 기록하려면 다음을 사용할 수 있습니다: python setup.py install --record files.txt 제거하려면 xargs를 사용하여 제거할 수 있습니다: xargs rm -rf < files.txt 또는 Windows를 실행 중인 경우 Power.. 2023. 6. 9.
Flutter 플러터를 사용하여 윈도우 환경에서 iOS 기기에 대한 개발, Developing for iOS device in Windows environment with Flutter 질문 I'm new to Flutter, was just wondering if it's possible. I've tried building the demo code using intellij with given instruction (https://flutter.io/setup/). It runs well on android device, but can't find the option to compile and run on my iOS device. 답변 당신은 안드로이드 스튜디오 또는 비주얼 스튜디오 코드로 리눅스 또는 윈도우에서 주요 개발을 할 수 있습니다. 그런 다음 git을 사용하여 코드를 macOS로 이동하여 iOS 시뮬레이터/기기에서 Xcode로 테스트하고 앱 스토어에 배포합니다. 모든 개.. 2023. 5. 31.