草庐IT

execute_func

全部标签

android - 错误 :Execution failed for task ':app:compileDebugKotlin' . > 编译错误。有关详细信息,请参阅日志

Error:Executionfailedfortask':app:compileDebugKotlin'.>Compilationerror.Seelogformoredetailsbuild:gradle(模块:app)buildscript{repositories{maven{url'https://jitpack.io'url'https://maven.fabric.io/public'}}dependencies{classpath'io.fabric.tools:gradle:1.+'}}applyplugin:'com.android.application'appl

android - 错误 :Execution failed for task ':app:compileDebugKotlin' . > 编译错误。有关详细信息,请参阅日志

Error:Executionfailedfortask':app:compileDebugKotlin'.>Compilationerror.Seelogformoredetailsbuild:gradle(模块:app)buildscript{repositories{maven{url'https://jitpack.io'url'https://maven.fabric.io/public'}}dependencies{classpath'io.fabric.tools:gradle:1.+'}}applyplugin:'com.android.application'appl

nkd 编译ffmpeg错误: clang is unable to create an executable file. C compiler test failed.

用最新的ndk(21.1)编译新的ffmpeg(4.1) 网上找了个编译脚本然后一运行就报上面的错误,找了n多篇也没搜罗到解决办法,有一种大部分人都在问这个问题但是就是没有解决方案的不明觉厉,发帖的发帖,但是没人回答,回答问题的也多数是水文,风马牛不相及,视乎还有一部分根本没有发现这个问题,上来都是贴编译脚本,报这种错?好像从来不会有这这回事?不过我现在终于解决了,blog一下:我的环境出现这个问题是,编译配置脚本上多了一个行配置: --cpu=$CPU CPU=arm64-v8a因为这个--cpu的参数导致问题。正确的写法是 #32bitARCH=armCPU=armv7-a#或者64bit

nkd 编译ffmpeg错误: clang is unable to create an executable file. C compiler test failed.

用最新的ndk(21.1)编译新的ffmpeg(4.1) 网上找了个编译脚本然后一运行就报上面的错误,找了n多篇也没搜罗到解决办法,有一种大部分人都在问这个问题但是就是没有解决方案的不明觉厉,发帖的发帖,但是没人回答,回答问题的也多数是水文,风马牛不相及,视乎还有一部分根本没有发现这个问题,上来都是贴编译脚本,报这种错?好像从来不会有这这回事?不过我现在终于解决了,blog一下:我的环境出现这个问题是,编译配置脚本上多了一个行配置: --cpu=$CPU CPU=arm64-v8a因为这个--cpu的参数导致问题。正确的写法是 #32bitARCH=armCPU=armv7-a#或者64bit

Windows10启动Docker报错:Hardware assisted virtualization and data execution protection must enabled BIOS

1、报错详情HardwareassistedvirtualizationanddataexecutionprotectionmustbeenabledintheBIOS.2、原因分析问题出在Hyper-V已禁用或Hypervisor代理未运行。3、解决方案方案一(如果完全禁用或未安装Hyper-V)dockerdesktop基于windowshyper-v,必须确保hyper-v组件已经开启。可通过如下PowerShell(管理员身份)命令启动。以管理员身份打开CMD启用Hyper-Vdism.exe/Online/Enable-Feature:Microsoft-Hyper-V/All或者在

Windows10启动Docker报错:Hardware assisted virtualization and data execution protection must enabled BIOS

1、报错详情HardwareassistedvirtualizationanddataexecutionprotectionmustbeenabledintheBIOS.2、原因分析问题出在Hyper-V已禁用或Hypervisor代理未运行。3、解决方案方案一(如果完全禁用或未安装Hyper-V)dockerdesktop基于windowshyper-v,必须确保hyper-v组件已经开启。可通过如下PowerShell(管理员身份)命令启动。以管理员身份打开CMD启用Hyper-Vdism.exe/Online/Enable-Feature:Microsoft-Hyper-V/All或者在

graphviz.backend.execute.ExecutableNotFound: failed to execute WindowsPath(‘dot‘), make sure the Gra

目录场景:报错:解决:目录结构:输入数据:主函数: 输出效果:场景:我在使用graphviz这个第三方库,python实现求两点间所有路径的算法并使用graphviz图形化展示路径。报错:graphviz.backend.execute.ExecutableNotFound:failedtoexecuteWindowsPath('dot'),makesuretheGraphvizexecutablesareonyoursystems'PATH解决:大家习惯pipinstallgraphviz去安装,但是graphviz是个软件,不能单独用Pip安装。(1)先将自己安装好的卸载pipuninst

graphviz.backend.execute.ExecutableNotFound: failed to execute WindowsPath(‘dot‘), make sure the Gra

目录场景:报错:解决:目录结构:输入数据:主函数: 输出效果:场景:我在使用graphviz这个第三方库,python实现求两点间所有路径的算法并使用graphviz图形化展示路径。报错:graphviz.backend.execute.ExecutableNotFound:failedtoexecuteWindowsPath('dot'),makesuretheGraphvizexecutablesareonyoursystems'PATH解决:大家习惯pipinstallgraphviz去安装,但是graphviz是个软件,不能单独用Pip安装。(1)先将自己安装好的卸载pipuninst

分析解释selenium:DeprecationWarning: executable_path has been deprecated, please pass in 和打开浏览器闪退问题

问题一:报错:DeprecationWarning:executable_pathhasbeen          我们在解决chrom版本和驱动版本的问题后(如果还没有解决,可以私信我给你们chrome和chromedriver的包)写完基础的代码后会发现报错:url='http://www.baidu.com'path='chromedriver.exe'browser=webdriver.Chrome(path)browser.get(url)DeprecationWarning:executable_pathhasbeendeprecated,pleasepassinaServiceo

分析解释selenium:DeprecationWarning: executable_path has been deprecated, please pass in 和打开浏览器闪退问题

问题一:报错:DeprecationWarning:executable_pathhasbeen          我们在解决chrom版本和驱动版本的问题后(如果还没有解决,可以私信我给你们chrome和chromedriver的包)写完基础的代码后会发现报错:url='http://www.baidu.com'path='chromedriver.exe'browser=webdriver.Chrome(path)browser.get(url)DeprecationWarning:executable_pathhasbeendeprecated,pleasepassinaServiceo