콘텐츠로 건너뛰기

HowTo

React Native Get Started really #2

React Native Getting Started 페이지의 내용을 따라하면서 발생한 문제들입니다. 시작하기 정말? #1 시작하기 정말? #2 👈 시작하기 정말? #3 기본적인 설치 및 구성은 페이지를 보며 진행했습니다. 저의 환경은 macOS 10.14.5 입니다. Expo 는 사용하지 않고, React Native CLI 로 프로젝트를 스캐폴딩했습니다. Node, XCode, Android Studio… 더 보기 »React Native Get Started really #2

React Native Get Started really #1

React Native Getting Started 페이지의 내용을 따라하면서 발생한 문제들입니다. 시작하기 정말? #1 👈 시작하기 정말? #2 시작하기 정말? #3 기본적인 설치 및 구성은 페이지를 보며 진행했습니다. 저의 환경은 macOS 10.14.5 입니다. Expo 는 사용하지 않고, React Native CLI 로 프로젝트를 스캐폴딩했습니다. Node, XCode, Android Studio… 더 보기 »React Native Get Started really #1

Python mysqlclient 패키지 설치 문제

Django 프로젝트를 만들고, 데이터베이스 연결 구성을 위해 mysqlclient 패키지를 설치하던 중 문제가 발생했습니다. 환경 macOS Mojave 10.14.5 Python 3.7.3 pip 19.1.1 (Python 3.7) 문제 터미널에서 아래 명령으로 mysqlclient 패키지 설치를 실행하면 에러가 발생합니다. $ pip3 install mysqlclient Collecting mysqlclient Using cached https://files.pythonhosted.org/packages/f4/f1/3bb6f64ca7a429729413e6556b7ba5976df06019a5245a43d36032f1061e/mysqlclient-1.4.2.post1.tar.gz ERROR: Complete output… 더 보기 »Python mysqlclient 패키지 설치 문제

Start Visual Studio Code on Terminal on MacOS

구성 명령 팔레트를 열고 (Command ⌘ + Shift ⇧ + p), Shell Command: Install ‘code’ command in PATH를 선택합니다. 이제 터미널 앱에서 Visual Studio Code를 실행할 수 있습니다. $ cd path-to-workspace $ code . 참조: Launching from the command line: Visual Studio Code on macOS