LoginSignup
1
4

More than 5 years have passed since last update.

windows python 導入

Last updated at Posted at 2018-09-03

インストールされたいもの
python本体
Numpy(数値計算モジュール)
matplotlib、seaborn、bokeh、jupyter(可視化モジュール)
Scipy(科学技術計算モジュール)
Pandas,blaze,dask(データ解析モジュール)
pdfminer3K(PDF解析モジュール)
csvkit(csvハンドリングモジュール)
statsmodels(統計モジュール)
scikit-learn(機械学習)
PuLP(数理最適化モジュール)
NetworkX(ネットワークモジュール)
xlwings(Excel連携モジュール)
lightgbm(勾配ブースティング関連モジュール)
BeautifulSoup4(ウェブスクレイピング)

下記のサイトを参考
https://qiita.com/R-Imai/items/18fee5203e695838e899

python本体のインストール、下記サイトからインストーラーダウンロード
https://www.python.org/downloads/windows/
インストールの際にAdd Python 3.※ to PATH をチェック入れ
パス変更の場合、カスタマの方を選ぶ(その前にディレクトリを作成)

終わったらコマンドプロンプトを立ち上げ、python -Vでバージョン確認

次にpipをアップグレードする
python -m pip install --upgrade pip

pipに入っているモジュールを確認
pip list
基本はpipとsetuptools しかない次には各モジュールをインストール

pip install Numpy matplotlib seaborn bokeh jupyter Scipy Pandas blaze dask pdfminer3K csvkit statsmodels scikit-learn PuLP NetworkX xlwings lightgbm BeautifulSoup4
(場合によって -mをつけて管理者でやる)

少し時間がかかる

終わったら pip listで確認あればOK、これら付随するものもインストールされるはず、これで完了

Atomエディタをインストール
これは好みですがあれば便利
https://atom.io/
インストールされたら、日本語化を行う
「Settings」→「Install」を選択
Search packagesに「japanese Menu」を入力して「Packages」をクリック
検索で出てきた「japanese Menu」の「Install」をポチって完了
こちら参考
https://qiita.com/takuya-y/items/c1df4187c2c2eb679bde

Jupyter エディタの起動は
jupyter notebook

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