Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 그래프 데이터베이스
- Python
- RStudio
- 인공지능
- 딥러닝
- GraphX
- SQL
- 분산 병렬 처리
- RDD
- Federated Learning
- r
- 빅데이터
- graph database
- GDB
- 그래프
- spark
- TensorFlow
- Cypher
- TigerGraph
- Neo4j
- BigData
- Graph Ecosystem
- 그래프 질의언어
- DeepLearning
- 그래프 에코시스템
- 연합학습
- SparkML
- GSQL
- graph
- Graph Tech
Archives
- Today
- Total
Hee'World
[Ubuntu] MariaDB 설치 및 jupyter 연결 본문
- Ubuntu에 MariaDB 설치
1. sudo apt-get install mariadb-server 입력
2. mariadb의 root패스워드 설정
3. 설정한 root 패스워드를 이용하여 접속합니다.
4. MariaDB 연결을 위한 MySQL-python을 설치합니다.
- pip install MySQL-python을 입력합니다.
5. jupyter에서 아래와 같은 코드를 입력하여 연결합니다.
import pandas as pd
import MySQLdb
db = MySQLdb.connect(
'localhost',
'username',
'userpassword',
'db',
charset='utf8'
)
pd.read_sql('select * from host', db)
'OS > Linux' 카테고리의 다른 글
Linux 기본 명령어(1) (0) | 2020.04.24 |
---|---|
[Ubunut] 버전확인하기 (0) | 2016.07.09 |
SSH 설정하기 (1) | 2016.07.03 |
Linux 기본 명령어 (0) | 2013.09.03 |
Comments