본문 바로가기

Python4

서버 기본 세팅 하기 (Apache 및 MariaDB 설치) 1. Apache 설치 ubuntu 22 터미널에서 sudo apt update sudo apt upgrade sudo apt install apache2 -y 아래 명령어로 정상 실행 확인 (activate 확인) systemctl status apache2 2. MariaBD respository 설정(https://mariadb.org/download/?t=repo-config&d=22.04+"jammy"&v=10.6&r_m=xtom_jp) sudo apt-get install apt-transport-https curl sudo mkdir -p /etc/apt/keyrings sudo curl -o /etc/apt/keyrings/mariadb-keyring.pgp 'https://mariadb... 2024. 4. 4.
형태소 분석기 mecab 설치 (Mac os) 오늘은 한글 형태소 분석기 중에서 가장 많이 사용되고 있는 mecab 형태소 분석기 설치 방법에 대해서 알아보고자 합니다. 1. 먼저, 한글 형태소 분석을 위한 python을 설치합니다. python이 설치되어 있으신 분들은 이 부분을 넘어가고 설치가 안되어 있는 분들은 아래의 홈페이지를 통해 설치할 수 있습니다. https://www.python.org/downloads/ Download Python The official home of the Python Programming Language www.python.org 홈페이지에서 해당 OS에 해당하는 python을 다운로드하여 설치 (최신 버전을 설치하는 것보다는 Stable releases 버전으로 나온 python을 설치하는 것이 오류 없이 설치.. 2023. 5. 3.
[Python] CSV 파일 파이썬으로 열기 1. CSV 파일이란 무엇인가? 데이터 값들이 쉼표로 구분되는 텍스트 데이터 또는 텍스트 파일을 의미한다. 확장자는. csv로 이용되어집니다 MIME형식은 text/csv 이며, comma-sperated variables이라고 하기도 합니다. 2. Python 을 이용하여 CSV 파일을 읽어 들이는 방법 (2가지 방법) CSV라이브러리를 이용 pandas 라이브러리를 이용 3. CSV 라이브러리를 이용해서 CSV 파일 열기 아래와 같이 코드를 입력하면 csv파일을 읽어 들일 수 있다. import csv with open("/Users/python/META_station.csv", 'r') as file: csvreader = csv.reader(file) for row in csvreader: pri.. 2023. 1. 17.
[Python] Schedule (Mac OS) import schedule import time def helloword1(text): print(text) def helloword2(text): print(text) # 5초에 한번씩 함수 실행 test1 = schedule.every(5).seconds.do(helloword1, '5초마다 스케쥴러 실행중') # 10분에 한번씩 함수 실행 test2 = schedule.every(1).minutes.do(helloword2, '1분마다 스케쥴러 실행중') num = 0 while True: schedule.run_pending() time.sleep(1) num = num + 1 if num > 1: schedule.cancel_job(test2) 1. Schedule Libary Schedule.. 2023. 1. 2.
반응형