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?

More than 3 years have passed since last update.

Pythonで必要なターミナルコマンドとPIPインストール、ver確認方法

Last updated at Posted at 2019-04-16

【ターミナルコマンド】

  1. ls = ファイルの表示
  2. pwd = 現在いる場所を表示
  3. cd [path] = 指定先のディレクトリに移動
  4. mkdir [dir] = ディレクトリを作成する
  5. mv [file] [dir] = ファイルを移動させる
  6. mv [file] [new file] = ファイル名を変更する
  7. cp = ファイルをコピーする

  8. rm = ファイルを削除
  9. Ctl + L = 画面をクリアする
  10. Ctl + D = ターミナル終了

参照元
https://qiita.com/kenju/items/77a2dc1b6a60697b1133

Python 対話型コマンド

対話型

python3

対話型から脱出

exit()

python version確認

python3 --version

参照元
https://www.sejuku.net/blog/50417

0
0
1

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?