Ubuntu安装PostgreSQL、并使用OmniDB查看 技术标签: 学习笔记 postgresql1:查看待安装postgreSQL版本信息 apt show postgresql 2:安装 postgresql sudo apt update sudo apt install postgresql postgresql-contrib 3: 查看安装的版本 sudo -u postgres psql -c "SELECT version();" 4:......