@Echo offtitle 双心一键获取winsxs的写入权限,解决VC运行库安装error1935等错误set path=%path%;%~dp0setlocal EnableDelayedExpansionset /P dv=请输入要处理的windows的根路径(例如C:,直接回车默认为C:盘):if not defined dv set dv=C: ::获取管理员权限TAKEOWN /F "%dv%\Windows\winsxs" /r /d YICACLS "%dv…
解决BeautifulSoup库运行时报错问题 运行BeautifulSoup库时可能出现下面的错误,具体错误消息为:To get rid of this warning, change this: BeautifulSoup([your markup]) to this: BeautifulSoup([your markup], "html.parser") 2.修改方法: 根据提示,将初始化,soup=BeautifulSoup(doc)修改为soup=BeautifulSoup(…