安装iohook出错

2021-06-08 11:20:55


ohook install on windows 10 64 doesn't work 


no such file or directory, open 'C:\Users\A334577\AppData\Local\Temp\prebuild.tar.gz'


C:\gldev_room\npm_global\node_modules\iohook\install.js:16


参考地址 ohook install on windows 10 64 doesn't work #329


安装0.9.1失败,我们可以选择0.9.1因为包里面地址整错了。

npm install iohook@0.9.0 worked for me
It appears that v0.9.1 is published to the wrong URL

should be:
https://github.com/wilix-team/iohook/releases/download/v0.9.1/iohook-v0.9.1-node-v83-win32-x64.tar.gz

actually located:
https://github.com/wilix-team/iohook/releases/download/undefined0.9.1/iohook-v0.9.1-node-v83-win32-x64.tar.gz



  • 2017-02-24 15:53:02

    PHP中__get()和__set()的用法实例详解

    在PHP5中,预定义了两个函数“__get()”和“__set()”来获取和赋值其属性,对每个字段进行set和get的操作。只需要加上两个魔术方法即可

  • 2017-02-24 16:53:58

    PHP 中的Closure

    Closure,匿名函数,又称为Anonymous functions,是php5.3的时候引入的。匿名函数就是没有定义名字的函数。这点牢牢记住就能理解匿名函数的定义了。

  • 2017-03-02 09:45:27

    动态加载js和css

    开发过程中经常需要动态加载js和css,今天特意总结了一下常用的方法。