zoukankan      html  css  js  c++  java
  • choco winget-cli

    https://github.com/microsoft/winget-cli

    Chocolatey Install:

    First, ensure that you are using an administrative shell -
    you can also install as a non-admin, check out Non-Administrative Installation.

    Install with powershell.exe

    NOTE: Please inspect https://chocolatey.org/install.ps1 prior to running any of
    these scripts to ensure safety. We already know it's safe, but you should verify
    the security and contents of any script from the internet you are not familiar with.
    All of these scripts download a remote PowerShell script and execute it on your machine.
    We take security very seriously. Learn more about our security protocols.

    With PowerShell, you must ensure Get-ExecutionPolicy is not Restricted.
    We suggest using Bypass to bypass the policy to get things installed or AllSigned for quite a bit more security.
    Run Get-ExecutionPolicy. If it returns Restricted, then run Set-ExecutionPolicy AllSigned or
    Set-ExecutionPolicy Bypass -Scope Process.

    Now run the following command:

    Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
    

    Paste the copied text into your shell and press Enter.
    Wait a few seconds for the command to complete.
    If you don't see any errors, you are ready to use Chocolatey!
    Type choco or choco -? now, or see Getting Started for usage instructions.

    https://chocolatey.org/install

    choco search <keyword>
    choco list <keyword>
    choco install <package1 package2 package3...> 
    choco install <package>  -version ***
    choco  uninstall name
    choco version <package>
    choco  upgrade <package>
    choco list -localonly  
    choco list -lo
    
    choco install python
    choco install nodejs
    choco install lua
    choco install mingw
    choco install vim
    choco install fzf
    choco install jdk8
    
  • 相关阅读:
    关于mysql 中schema的相关操作
    ASP.NET Core MVC 之过滤器(Filter)
    docker-Error: No such container
    java多种加密和解密方式
    linux 下的rpm 和ivh各是什么意思
    新生赛题目准备
    Figma 学习笔记 – Keyboard Shortcut and Tips 小技巧
    Figma 学习笔记 – Frame
    Chart.js 学习笔记
    SQL Server STRING_AGG
  • 原文地址:https://www.cnblogs.com/Searchor/p/13600923.html
Copyright © 2011-2022 走看看