首页 \ 问答 \ 求opencv 2.4.5下载地址

求opencv 2.4.5下载地址

求opencv2.4.5下载地址,官网上已经没有这个版本
更新时间:2022-01-23 16:01

最满意答案

下面我先以CentOS这款linux发行版来讲解linux平台上安装pyautogui模块。如下面图中所示,pyautogui是一款python模块,因此你先要保证python命令能够正常执行,pip模块正常安装,如下所示:可以正常显示python和pip的版本信息。



2/6

确认python和pip都可以正常工作后,执行安装命令,如下面图中所示:pip会自动解决一些pyautogui的依赖关系,并下载对应的依赖包。知道最终安装完成。



3/6

pyautogui包安装完成后,这个时候还不能正常使用,想要正常使用,需要避开两个坑。第一个是,它需要一个Xlib依赖,但是pip没有帮它自动安装,需要手动来安装,如下面图中所示:使用pip安装好Xlib包知道正常安装完成。



4/6

如果没有安装Xlib包,虽然pyautogui正常安装完成了,但是在使用的时候会报错,如下所示,会提示不存在Xlib包。



5/6

需要避开的第二个坑是,pyautogui是一款用于GUI图形界面的工具,因此无法在ssh连接的终端上运行,即通过securCRT,xshell等工具连接到linux系统上时,是无法正常使用的。如下面图中所示,我是通过xshell连接到linux系统上,然后导入pyautogui包时,直接报错。



6/6

因此必须要通过linux的图形桌面登陆,然后打开虚拟终端,再导入pyautogui模块,此时才不会报错,如下面图中所示:导入模块正常,使用模块中的函数正常。



其他回答

你好!

不明白啊 = =!

如有疑问,请追问。

相关问答

更多
  • 下面我先以CentOS这款linux发行版来讲解linux平台上安装pyautogui模块。如下面图中所示,pyautogui是一款python模块,因此你先要保证python命令能够正常执行,pip模块正常安装,如下所示:可以正常显示python和pip的版本信息。  2/6 确认python和pip都可以正常工作后,执行安装命令,如下面图中所示:pip会自动解决一些pyautogui的依赖关系,并下载对应的依赖包。知道最终安装完成。  3/6 pyautogui包安装完成后,这个时候还不能正常使用, ...
  • 如果pip安装不行的话,那就先安装Pillow,因为它要用到PIL库,如果装了Pillow还不行的话,那就源码安装: git clone https://github.com/asweigart/pyautogui.git cd pyautogui python setup.py install
  • 也许你没有正确使用click功能。 查看函数定义: 单击(x =无,y =无,clicks = 1,interval = 0.0,button ='left',duration = 0.0,tween =,pause = None,_pause = True) 使用pyautogui.click(650, 200, 10)你说x = 650,y = 200,点击= 10。 我想你想说pyautogui.click(650, 200, interval=10) 。 The problem may have b ...
  • 在没有发布的情况下执行键盘按键操作。 这将使该键处于停滞状态。 注意:由于某种原因,这似乎不会导致键盘重复,如果在文本字段上按住键盘键会发生。 import pyautogui while True: pyautogui.press('a') Performs a keyboard key press without the release. This will put that key in a held down state. NOTE: For some reason, this does ...
  • 这可能是因为你正在从Python 2.x shell中尝试它。 请在python3 shell上试试这个命令并尝试导入相同的命令。 It might be because you're trying it from a python 2.x shell. Instead try this command on a python3 shell and try importing the same.
  • 您可以设置pyautogui.PAUSE来控制操作之间延迟的持续时间。 默认情况下,它设置为0.1 sec ,这就是您每秒最多获得10次点击的原因。 pyautogui.PAUSE = 0.01 例如,如果硬件支持,则会减少每秒100次点击的延迟。 从文档中 ,您可以阅读以下内容: 通过将pyautogui.PAUSE变量设置为要暂停的秒数的浮点数或整数值,可以在所有PyAutoGUI函数之后添加延迟。 默认情况下,暂停设置为0.1秒。 You can set pyautogui.PAUSE to cont ...
  • 显然,游戏检测到注入的鼠标点击和按键,所以我需要绕过注入的标志。 Apparently the game detects injected mouse clicks and key presses, so I need to bypass the injected flag.
  • 要安装PyAutoGUI,请从PyPI和依赖项安装pyautogui软件包。 在Windows上,这是: C:Python34pip.exe install pyautogui To install PyAutoGUI, install the pyautogui package from PyPI and dependencies. On Windows, this is: C:Python34pip.exe install pyautogui
  • 从这里的Pyautogui文档中,当无法在屏幕上找到图像时,locateCenterOnScreen返回None。 请注意,您正在寻找此方法的2个结果,但是None只是一个结果(因为该方法通常返回两个,这对我来说似乎是糟糕的设计 - 它应该引发异常,或者至少返回一个带有两个的元组无对象)。 看看下面的例子,这基本上是发生在你身上的事情: >>> foo,bar = None Traceback (most recent call last): File "", line 1, in
  • 我得到这个错误,发现它仍然执行这个点击: try: pyautogui.click() except: print "Error-carrying on anyway" 或者,如果您不希望它打印任何东西: try: pyautogui.click() except: pass I got this error and found that it still performs the click- try this: try: pyautogui.click() e ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)