2
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?

【Windows】Pythonの導入方法

Posted at

記事概要

Pythonの開発を行うために実施する、Windowsの設定方法をまとめる。

前提

  • PCはWindowsを使用している
  • CPythonで開発環境を構築する

Pythonの開発環境

  • CPython(シーパイソン)
    • 1番基本的な開発環境
  • Anaconda(アナコンダ)
    • Pythonのディストリビューションの1つ
    • CPythonに加えて、代表的なソフトウェア(ライブラリ)が同梱されている
  • Miniconda(ミニコンダ)
    • Anacondaを最小限の構成にしたようなディストリビューション

手順

  1. パイソンの公式サイトを開く
  2. 「Download Python 3.x.x」をクリックする
    ※「x」はバージョン番号なので、随時変更される
  3. ダウンロードしたインストーラーを実行し、CPythonをインストールする
    1. 「Install launcher for all users(recommended)」をチェックする
    2. 「Add Python 3.x to PATH」をチェックする
    3. 「Install Now」をクリックする
    4. 「このアプリがデバイスに変更を加えることを許可しますか?」に対して、「はい」をクリックする
    5. 「Setup was successfull」と表示されたら完了
  4. コマンドプロンプトを起動し、下記コマンドを実行する
    > python -V
    
  5. Python 3.13.7のように、インストールしたバージョン番号が表示されることを確認する
    > python -V
    Python 3.13.7
    
2
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
2
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?