win10安装wget及“未能创建SSL/TLS安全通道”解决方案


文章目录


1.安装chocolatey

以管理员身份运行cmd,安装chocolatey:

@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe"?-NoProfile?-InputFormat?None?-ExecutionPolicy?Bypass?-Command?"iex?((New-Object?System.Net.WebClient).DownloadString(‘https://chocolatey.org/install.ps1‘))"?&&?SET?"PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

此时报错:
win10安装wget及“未能创建SSL/TLS安全通道”解决方案
解决方案:
直接打开网址:https://chocolatey.org/install.ps1
右键另存为install.ps1文件(相当于下载install.ps1)
win10安装wget及“未能创建SSL/TLS安全通道”解决方案
win10安装wget及“未能创建SSL/TLS安全通道”解决方案
以管理员运行cmd,切换到下载的install.ps1所在目录,运行下面代码:

@powershell?-NoProfile?-ExecutionPolicy?Bypass?-Command?"iex?((New-Object?System.Net.WebClient).DownloadString(‘install.ps1‘))"?&&?SET?"PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

win10安装wget及“未能创建SSL/TLS安全通道”解决方案
输入choco,检查是否安装成功:
win10安装wget及“未能创建SSL/TLS安全通道”解决方案

2.安装wget

输入:choco install wget,进行安装:
这里老是报错“操作超时”,应该是网速的关系,多安装几次就好了
win10安装wget及“未能创建SSL/TLS安全通道”解决方案
使用 wget -V 检查是否安装成功:
win10安装wget及“未能创建SSL/TLS安全通道”解决方案
此时已经安装好了。

win10安装wget及“未能创建SSL/TLS安全通道”解决方案

上一篇:win10共享打印机(连接共享打印机的两种方法,IP地址变化的连接方法)


下一篇:WIN10桌面图标间距位置很宽的解决办法