[Python] matplotlib 한글 폰트 전역 설정
·
Python/Setting
Window 환경입니다.1. 폰트 다운 & 설치저는 네이버 무료 폰트인 나눔체를 설치했습니다.네이버 글꼴 모음 (naver.com) 네이버 글꼴 모음네이버가 만든 150여종의 글꼴을 한번에 만나보세요hangeul.naver.com설치를 진행 후 Window의 경우 .ttf 우클릭 \(\rightarrow\) 모든 사용자용으로 설치를 진행합니다.(모든 사용자용으로 설치를 진행해야 C:\Windows\Fonts에 설치 됩니다. 그냥 설치하면 C:\Windows\User\AppData\... 에 설치 됩니다.)2. matplotlibrc 수정import matplotlib.font_manager as fmimport matplotlib as mplprint(mpl.matplotlib_fname())위 코드를 ..
[Python] / [Poetry] 설치 & 간단한 실습 (FastAPI)
·
Python/Setting
https://python-poetry.org/ Poetry - Python dependency management and packaging made easy Dependency resolver Poetry comes with an exhaustive dependency resolver, which will always find a solution if it exists. And get a detailed explanation if no solution exists. Isolation Poetry either uses your configured virtualenvs or creates its own to al python-poetry.org Poetry Python Dependecy Manager로 P..
[Python] / [nohup] .py 백그라운드 실행
·
Python/Setting
filename.py 파일을 실행할 때 컴퓨터를 종료하게 되면 이 실행 파일도 종료됩니다. 이를 백그라운드에서 실행하여 컴퓨터를 종료하더라도 계속해서 실행할 수 있는 명령어가 있어서 소개하겠습니다. nohup 사용법은 매우 간단합니다. CLI로 .py를 실행할 때 앞에 nohup을 붙여주기만 하면 됩니다. nohup python test.py & 이때 실행 log의 경우 nohup.output에 기록되며 다음 명령어로 생략 가능하다. nohup python test.py & > /dev/null 프로세스 종료 백그라운드에서 해당 파일을 실행하기 때문에 GUI 환경에서 편하게 프로세스를 종료할 수 없습니다. 따라서 PID를 찾아 직접 종료시켜줘야하는 약간의 번거로움이 있습니다. 먼저, ps -ef 명령어를..
[Python] / [pyenv] Ubuntu에서 pyenv 설치
·
Python/Setting
야러 개의 파이썬 버전과 가상환경을 관리하기 위해 Pyenv를 깔아보겠습니다. Pyenv 설치 제일 먼저 설치된 패키지들을 업데이트합니다. $ sudo apt-get update 다음으로 pyenv를 사용하기 위한 필요 패키지들을 설치합니다. $ sudo apt-get install -y make build-essential libssl-dev zlib1g-dev \ libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev \ libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev python-openssl pyenv를 설치합니다. $ curl -L https://raw.githubuse..
[Python] / [VSCode] Ubuntu에서 설치 및 SSH를 사용하여 서버 원격 접속
·
Python/Setting
Ubuntu VSCode 설치 1. apt 업데이트 $ sudo apt-get update 2. curl 설치 $ sudo apt-get install curl 3. Microsoft GPG키 다운 $ sudo sh -c 'curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > /etc/apt/trusted.gpg.d/microsoft.gpg' 4. 저장소 추가 $ sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list' 5. 패키지 목록 가져오기 $ su..
[Python] / [Jupyter] 주피터 노트북 이미지 삽입 방법
·
Python/Setting
1. 셀에 삽입 방법 Image("/파일 DIR/파일.png") 2. MarkDwon에 삽입 ![이미지이름](파일경로/파일.png)
[Python] / [Pycharm] Ubuntu 서버 SSH 연결 및 Interpreter 설정
·
Python/Setting
보호되어 있는 글입니다.
욱근욱
'Python/Setting' 카테고리의 글 목록