본문 바로가기

platform5

Python 오류 "filename.whl은(는) 이 플랫폼에서 지원되지 않는 휠입니다.", Error "filename.whl is not a supported wheel on this platform" 질문 저는 로컬 드라이브에 저장된 scipy-0.15.1-cp33-none-win_amd64.whl을 설치하고 싶습니다. 저는 다음을 사용하고 있습니다: pip 6.0.8 from C:\Python27\Lib\site-packages python 2.7.9 (default, Dec 10 2014, 12:28:03) [MSC v.1500 64 bit (AMD64)] 다음을 실행할 때: pip install scipy-0.15.1-cp33-none-win_amd64.whl 다음과 같은 오류가 발생합니다: scipy-0.15.1-cp33-none-win_amd64.whl은(는) 이 플랫폼에서 지원되지 않는 휠입니다 문제가 무엇인가요? 답변 cp33는 CPython 3.3을 의미합니다. 대신 scipy‑0.15.. 2023. 11. 24.
에러: 멤버를 찾을 수 없음: 'packageRoot', Flutter에서 ignore: deprecated_member_use를 해결하는 방법은 무엇인가요?, Error: Member not found: 'packageRoot', how to solve ignore: deprecated_member_use in Flutter? 질문 내 플러터 프로젝트에서 몇 가지 플러그인 업데이트를 진행한 후 flutter upgrade를 사용했습니다. 그 후에는 flutter 프로젝트를 실행할 때 다음 오류가 표시됩니다- /C:/src/flutter/flutter/.pub-cache/hosted/pub.dartlang.org/platform-3.0.2/lib/src/interface/local_platform.dart:46:19: Error: Member not found: 'packageRoot'. io.Platform.packageRoot; // ignore: deprecated_member_use ^^^^^^^^^^^ FAILURE: Build failed with an exception. * Where: Script 'C:\src\f.. 2023. 6. 12.
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.
Flutter 플러터에서 어떻게 프로그래밍 방식으로 앱을 종료하는지 알려주세요., Flutter how to programmatically exit the app 질문 Flutter 애플리케이션을 프로그래밍 방식으로 어떻게 닫을 수 있나요? 하나의 화면만 팝하려고 시도했지만 검은 화면이 나옵니다. 답변 아래는 Android와 iOS에서 모두 완벽하게 작동했습니다. dart:io에서 exit(0)을 사용했습니다. import 'dart:io'; @override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar( title: new Text(widget.title), ), body: new ... (...), floatingActionButton: new FloatingActionButton( onPressed: ()=> exit(0), tooltip: '앱 종료', child:.. 2023. 5. 10.