LoginSignup
6
6

More than 5 years have passed since last update.

windowsでのpython環境構築(chocolatey)

Last updated at Posted at 2019-03-18

はじめに

何番煎じかわからないけれど、自分がどうやって環境構築したかの備忘録

バージョン情報

Windows 10 Pro 64bit (OSビルド 17134.648)

chocolateyのインストール

https://chocolatey.org/install#installing-chocolatey
上記のInstall with cmd.exeにあるコマンドをコピペしてコマンドプロンプトで使用する

cmd.exe
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

下記の記事のコマンド等の説明が参考になりました!
【Chocolatey入門】導入から注意点、今後の可能性まで

pythonのインストール

cmd.exe
choco install python

pipのインストール

cmd.exe
choco install pip
pip install --upgrade pip
6
6
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
6
6