LoginSignup
0
0

More than 5 years have passed since last update.

自分用のコマンドメモ

Posted at

自分用のコマンドメモ(設定確認篇)

1.Ubuntu バージョン確認

$ cat /etc/issue
補足:ほかにもlsb-releaseコマンドで確認可、ただしlsb-releaseパッケージが必要

2.python バージョン確認

$ python --version
$ python -V
(python3の場合:python3--version)

3.Pythonのパッケージ(ライブラリ)のバージョンを確認

$ pip list (こっちの方が見た目分かりやすい)
$ pip freeze (上記とほぼ同じ)
$ pip show XX (XXの詳細を確認)
(ほかにcondaコマンドも確認できる)

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