studyLog

SQL SQLite 설치 방법 맥 환경 MacOs 데이터베이스

OPENLUNCH 2024. 6. 16. 19:31
반응형

SQL SQLite 설치 방법 맥 환경 MacOs 데이터베이스

안녕하세요 오픈런치입니다.

데이터베이스를 관리하는 무료 프로그램, 툴 SQLite(에스큐엘라이트 또는 에스큐라이트)가 있습니다.

맥 환경에서 SQLite 설치하는 방법을 간단하게 글로 남겨 보아요.

* Mac에서 SQLite 설치 및 사용

1. 패키지 설치

SQLite 공식 웹사이트에서 패키지 파일(zip, 압축파일 또는 설치 파일)을 다운로드합니다.

https://www.sqlite.org/download.html

 

SQLite Download Page

Templates (1) and (2) are used for source-code products. Template (1) is used for generic source-code products and templates (2) is used for source-code products that are generally only useful on unix-like platforms. Template (3) is used for precompiled bi

www.sqlite.org

 

Mac의 경우 Mac OS X (x86) sqlite-tools 패키지를 사용합니다.

해당 패키지를 설치 또는 압축을 해제하세요.

2. 터미널 사용

터미널을 열고 cd 명령어를 사용하여 압축 해제된 폴더 위치로 이동하세요.

다음 명령어를 실행하세요:

mv sqlite3 /usr/local/bin/

이 명령어는 sqlite3 명령어를 터미널 경로에 추가하여 어디서든 사용할 수 있도록 합니다.

3. 설치 확인

터미널에서 sqlite3 newdb.sqlite 명령어를 입력하세요.

sqlite3 newdb.sqlite

sqlite> 프롬프트가 나타나면 SQLite 설치가 완료되었습니다.

control + d 를 누르면 종료됩니다.

프롬프트에서 .exit 를 입력하고 Enter 키를 누르면 마찬가지로 종료됩니다.

 

4. 비디오 튜토리얼

로컬 머신에 SQLite 설치하기 (Mac) 비디오 튜토리얼:

*Youtube Link:

https://www.youtube.com/watch?v=4MJSZi4qvIE

 

* English ver.

-Mac OS X

For Macs, use the Mac OS X (x86) sqlite-tools package:

1. Install it, and unzip it.

2.In your terminal, navigate to the directory of the unzipped folder using cd.

Run the command mv sqlite3 /usr/local/bin/. This will add the command sqlite3 to your terminal path, allowing you to use the command from anywhere.

3.Try typing sqlite3 newdb.sqlite. If you’re presented with a sqlite> prompt, you’ve installed SQLite! Enter control + d to quit. You can also exit by typing .exit in the prompt and pressing return.

4.Video Tutorial: Setting Up SQLite Locally (Mac)

*Youtube Link:

https://www.youtube.com/watch?v=4MJSZi4qvIE

끝!

 

 

반응형