error46 Python 오류: vcvarsall.bat을 찾을 수 없습니다., error: Unable to find vcvarsall.bat 질문 나는 Python 패키지 dulwich를 설치하려고 시도했습니다: pip install dulwich 하지만 알 수 없는 오류 메시지가 표시됩니다: error: Unable to find vcvarsall.bat 동일한 오류가 수동으로 패키지를 설치하려고 할 때도 발생합니다: > python setup.py install running build_ext building 'dulwich._objects' extension error: Unable to find vcvarsall.bat 답변 Update: 댓글에서 이 지침이 위험할 수 있다는 것을 지적합니다. Visual C++ 2008 Express 버전이나 목적에 맞게 제작된 Microsoft Visual C++ Compiler for Python.. 2023. 6. 26. Python 트래비스 CI에서 파이썬 setup.py가 'bdist_wheel'이 잘못된 명령어라고 말하는 이유는 무엇인가요?, Why is python setup.py saying invalid command 'bdist_wheel' on Travis CI? 질문 내 Python 패키지에는 setup.py가 있으며, Ubuntu Trusty에서 로컬로 정상적으로 빌드되며, 새로운 Vagrant Ubuntu Trusty VM에서 다음과 같이 프로비저닝 할 때도 정상적으로 빌드됩니다: sudo apt-get install python python-dev --force-yes --assume-yes --fix-broken curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | sudo python2.7 sudo -H pip install setuptools wheel virtualenv --upgrade 그러나 동일한 작업을 Travis CI Trusty Beta VM에서 수행 할 때.. 2023. 6. 26. Flutter 플러터 앱에 JSON 자산을 로드하는 방법은 무엇인가요?, How to load JSON assets into a Flutter App? 질문 내 Flutter 앱에 JSON 자산을로드하는 방법은 무엇입니까? 내 pubspec.yaml 파일은 다음과 같습니다: assets: - assets/data.json 데이터를로드하려고하면 항상 막힙니다. 시도해 봤습니다: final json = JSON.decode( DefaultAssetBundle.of(context).loadString("assets/data.json") ); 하지만 오류가 발생합니다: 인수 형식 'Future'은(는) 'String' 매개 변수 형식에 할당할 수 없습니다. 답변 다음을 시도해보세요 : String data = await DefaultAssetBundle.of(context).loadString("assets/data.json"); final j.. 2023. 6. 24. "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. 이전 1 ··· 7 8 9 10 11 12 다음