python 命令
python.exe -m venv .venv source .venv/bin/activate # linux .venv/bin/activate.ps1 # windows python.exe -m pip install -r .\requirements.txt --proxy=192.168.0.90:17890 python -…
|
1,295
|
|
14 字
|
1 分钟内
linq 一样使用 powershell
引用自这里 这是对应的 pdf 文件 [TOP] 数组 定义 # 定义数组 $myArray = @( “a”,”b”,”c”,”d”,”e”,”f”,”g”,”h” ) $myArray = “a”,”b”,”c”,”d”,”e”,”f”,”g”,”h” $myArray = @(25) $myArray = ,25 [int[]] $a = 1…
|
663
|
|
311 字
|
13 分钟
windows 免密登录 linux
# 生成密钥 ssh-keygen -t rsa ## windows # 使用 type 代替 cat 复制公钥至 linux 机器 type ~\.ssh\id_rsa.pub | ssh root@10.168.10.138 -p 12025 "cat >> .ssh/authorized_keys" ## l…
|
1,390
|
|
10 字
|
1 分钟内