win
おドン
win
準備中
準備中
準備中

vscode

zipファイルをダウンロードしてくる.
VSCode-win32-x64-1.55.2.zip
解凍
その中に
data
ファイルを作成し, vscodeを起動する.
日本語とパイソンの拡張をinstallする.
data/user-data/User/settign.jsonで
"terninal.integrated.shell.windows":"C:¥¥Users¥¥murakami¥¥desktop¥¥tan1¥¥PortableGit¥¥bin¥¥bash.exe"
を書き加える.

Portablegit

git for windowsから,
https://github.com/git-for-windows/git/releases
の最新のPortableGit-2.31.1-64-bit.7z.exe
をダウンロードする. インストールするとPortableGitディレクトリができる.
userディレクトリを作成して, binディレクトリ, .bashrcファイルを入れる.
etcの中にbash.bashrcが存在する.これに,
if [ -f ~/desktop/tan1/PortableGit/user/.bashrc ]; then
. ~/desktop/tan1/PortableGit/user/.bashrc
fi
export PATH=$PATH:~/desktop/tan1/PortableGit/user/bin
を書き加える. 以降からこのbinディレクトリに自作スクリプトを配置すれば良い.

python

python releases for windows|Python.orgから,
python-3.9.4-embed-amd64.zipをダウンロードする.
これを展開する.
 python39._pthとかがあるはずなので
#import site -> import siteに修正する.
PowerShellで
cd epython
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12;
wget "https://bootstrap.pypa.io/get-pip.py" -O "get-pip.py"
ここからは, PowerShellではなく, cmdで行う.
python get-pip.py
これでpipが使えるようになった.
python -m pip install numpy
sympy, scipy, numpy, pandas, matlab, openpyxl, japanize-matplotlib, seabornをインストールする.
Copyright (C) 2017 Odon Laboratry  All Rights Reserved.