hy_installation failed. on">
当前位置:   article > 正文

Win10家庭版Docker Desktop Installer 方式安装Docker遇到的问题及解决方法(转)_installation failed. one prerequisite is not fulfi

installation failed. one prerequisite is not fulfilled

二、Docker win10只支持专业版,家庭版安装会报Installation failed:one pre-requisite is not fullfilled错误,解决方法如下:

        新建hyperv.cmd,编辑内容如下,以管理员身份运行,遇到下载进度卡着不动可按回车继续。。执行完后会提示重启电脑:Y。

pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del hyper-v.txt
Dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL
  • 1
  • 2
  • 3
  • 4
  • 5

三、启用或关闭Windows功能:勾选Hyper-V

Hype-V

四、提示Installation failed:Containers Windows Feature is not available

Installation failed:Containers not available

解决方法:新建containers.cmd,编辑内容如下,以管理员身份运行,执行完后会提示重启电脑:Y。

pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*containers*.mum >containers.txt
for /f %%i in ('findstr /i . containers.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del containers.txt
Dism /online /enable-feature /featurename:Containers -All /LimitAccess /ALL
pause
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

-----安装成功-----

五、cmd命令行执行docker version查看docker版本

docker version

六、启动Docker又报Hardware assisted virtualization and data execution protection must be enabled in the BIOS错误,解决方法:打开任务管理器-性能查看虚拟化是否已开启。

虚拟化

若未开启虚拟化参考解决方法:BIOS开启虚拟化

------到此docker desktop终于启动起来啦-----

docker destop

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/977207
推荐阅读
相关标签
  

闽ICP备14008679号