0
1

More than 3 years have passed since last update.

初心者によるpython 環境作成メモ

Posted at

環境

  • OS
    windows10 home

  • IDE
    とりあえず無し
    Atomにてコーディング、実行を行う。
    (ステップ実行環境はまだ構築しない)

python 環境作成メモ

インストール

公式からpython3系を落とす(2はサポート終了が近いため)
anaconda を入れる
入れる際、環境変数への設定が行われるようにする

入れたプラグイン

  • autocomplete-python
    python補完機能

  • atom-runner
    Alt+R で実行できる

  • highlight-selected
    直接pythonとは関係ない。選択したワードを強調する

  • atom-beauty
    コード整形機能
    CTRL+ALT+B で実行

Atom設定

  • プラグインの追加
    メニュー File->Settings.. を開く
    + Install タブを開く

  • atom runner の日本語が文字化け対策
    メニュー File->Init Script... を開き
    process.env.PYTHONIOENCODING = "utf-8"
    と1行追加

0
1
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
1