powershell PIP-freeze.ps1

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell PIP-freeze.ps1相关的知识,希望对你有一定的参考价值。

$pip_file = "requirements.txt"

try {
  pip freeze > $pip_file

  # PowerShell creates UTF16 LE with Windows line endings so we must convert
  # for pip to consume
  # http://stackoverflow.com/questions/8852682/convert-file-from-windows-to-unix-through-powershell-or-batch
  Get-ChildItem $pip_file | ForEach-Object {
    $contents = [IO.File]::ReadAllText($_) -replace "`r`n?", "`n"
    $utf8 = New-Object System.Text.UTF8Encoding $false
    [IO.File]::WriteAllText($_, $contents, $utf8)
  }

  Write-Output "Created '$pip_file'"
} catch {
  Remove-Item $pip_file
}

以上是关于powershell PIP-freeze.ps1的主要内容,如果未能解决你的问题,请参考以下文章

powershell和powershell ise到底分别干啥用,powershell命令那么长怎么记

powershell怎么运行

powershell PowerShell:启动PowerShell作为其他用户提升

powershell [提示输入powershell] #powershell #input #prompt

powershell 测量PowerShell命令或PowerShell脚本的速度

powershell远程下载exe并执行