0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

バージョン確認コマンドまとめ

Last updated at Posted at 2023-06-02

概要

バージョン確認のコマンドをメモ程度に列挙します。

プログラミング言語/フレームワーク

Node.js

Node.js
$ node -v
$ node --version
Express
$ npm list -g express

※Expressの上記コマンドは正常に確認出来ていてもエラーとして認識されることがあります。

Go

Go
$ go version

Python

Python
$ python3 --version
Flask
$ flask --version

Ruby

Ruby
$ ruby -v
$ ruby --version
Ruby on Rails
$ rails -v
$ rails --version

データベース

MySQL

MySQL
$ mysql --version

PostgreSQL

PostgreSQL
$ psql --version

SQLite3

SQLite3
$ sqlite3 --version

ユーティリティ/コマンドラインツール

Git

Git
$ git -v
$ git --version

コンテナ型仮想環境用のプラットフォーム

Docker

Docker
$ docker -v
$ docker --version

パッケージ管理システム

Homebrew

Homebrew
$ brew -v
$ brew --version

npm

npm
$ npm -v
$ npm --version

pip

pip
$ pip --version

RubyGems

RubyGems
$ gem -v
$ gem --version
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?