背景
新しいPCを買ったので、再度pythonのインストールを行った
方法
-
やり方わからなかったので、とりあえずネットで検索
Python環境構築ガイド
https://www.python.jp/install/windows/index.html -
通常のと、Anaconda版があるみたいだけど、通常版をインストールする
通常版はわかりにくいからと、こっちのページを案内された
とくにこだわりはないので、最新版3.11をインストール
https://pythonlinks.python.jp/ja/index.html -
おまけに、
PowerSHellの初期設定もおこなう.
以下をpowershell内で入力
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force
意味は
Set-ExecutionPolicy RemoteSigned
実行ポリシーを変更。「RemoteSigned」はローカルは可、インターネットダウンロードは署名付きを許可。-Scope CurrentUser
コンピューターの現在のユーザーのグループ
-Force
強制的に上書き
おわり
参考
https://www.python.jp/install/windows/index.html
https://harikofu.blog.fc2.com/blog-entry-36.html
https://learn.microsoft.com/ja-jp/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.3