end0tknr's kipple - web写経開発

太宰府天満宮の狛犬って、妙にカワイイ

2020-07-26から1日間の記事一覧

install postgres 12.3 from source code to centos8

前準備 : yum install systemd-devel centos8ですので、自動起動には systemd (systemctl)を使用します。 postgresでは、systemd による自動起動を行う場合、 configure時に「--with-systemd」を指定します。 更に「--with-systemd」は「systemd-devel」を必…

python仮想環境(venv)の作成、および起動/停止

$ /usr/local/python3/bin/python3 -m venv venv_django_rest $ cd venv_django_rest/bin (venv_django_rest)$ source activate (venv_django_rest)$ deactivate $