본문 바로가기

MacOS6

VSCode는 Flutter SDK의 경로를 찾을 수 없습니다., VSCode Can't Find the PATH To the Flutter SDK 질문 I just tried to execute Flutter: New Project, but it shows an error that could not find a flutter SDK. I've ensured to complete all of the requirements from the flutter doctor. Is there any way to solve this problem? Thanks. 답변 macOS에서는 다음 단계를 따라 해결할 수 있습니다. 먼저 플러터 SDK를 다운로드 한 위치를 찾으세요. (여기에서 다운로드 할 수 있습니다). 다운로드 폴더에 있을 것입니다. 그렇지 않은 경우 다른 위치를 선택한 것입니다. 다음: 터미널을 엽니다. 다음 명령을 실행하세요: sudo nano /e.. 2024. 1. 3.
Xcode에서 iOS 앱을 빌드하는 동안 오류가 발생했습니다: 샌드박스: rsync.samba (13105)가 파일 쓰기 생성을 거부했습니다. Flutter가 파일에 쓰지 못했습니다., error while build iOS app in Xcode : Sandbox: rsync.s.. 질문 while building iOS app on Xcode I got these 2 errors, I tried to build the iOS on visual studio code and I got the same errors. the operating system macOS 14.0 beta. processor M1 Pro Could downgrading the operating system fix that issue? 답변 Xcode 프로젝트 빌드 옵션을 ENABLE_USER_SCRIPT_SANDBOXING으로 'No'로 업데이트하세요. 2023. 12. 15.
OS X에서 Python의 기본 버전을 3.x로 설정하는 방법은 무엇인가요? [중복], How to set Python's default version to 3.x on OS X? [duplicate] 질문 나는 Mountain Lion을 실행하고 기본 기본 Python 버전은 2.7입니다. Python 3.3을 다운로드하고 기본값으로 설정하려고합니다. 현재: $ python 버전 2.7.5 $ python3.3 버전 3.3 $ python을 실행할 때마다 3.3이 열리도록 어떻게 설정할 수 있을까요? 답변 기본 파이썬 실행 파일의 버전을 전체 시스템에 변경하면 파이썬2에 의존하는 일부 애플리케이션이 손상될 수 있습니다. 그러나 대부분의 쉘에서 명령을 별칭으로 지정할 수 있습니다. macOS의 기본 쉘인 10.14 이하의 bash 및 10.15의 zsh는 유사한 구문을 공유하기 때문에 다음과 같이 할 수 있습니다. alias python='python3' 이를 ~/.profile에 넣고, ~/.prof.. 2023. 10. 29.
Flutter SocketException: 연결 실패 (OS 오류: 허가되지 않은 작업, errno = 1) macOS에서 플러터 앱과 함께, SocketException: Connection failed (OS Error: Operation not permitted, errno = 1) with flutter app on macOS 질문 저는 Flutter 앱에서 다음과 같은 코드를 가지고 있습니다. 여기서 MyDataLoader는 main.dart에서 시작되는 위젯입니다. 코드: import 'package:flutter/material.dart'; import 'package:http/http.dart' as http; class MyDataLoader extends StatefulWidget { @override _MyDataLoaderState createState() => _MyDataLoaderState(); } class _MyDataLoaderState extends State { void getData() async { final response = await http.get('https://jsonplacehold.. 2023. 8. 12.