Alex Fang

Results 17 comments of Alex Fang

This is not only in zsh, I tested in cmd env, and got the same error. Result for `node -e "console.log(require.resolve('./node_modules/cz-conventional-changelog'))"` in zsh is: ```bash E:\Projects\Github\boxsnake\update-vue2-vite\node_modules\cz-conventional-changelog\index.js ```

I am assuming you are using Linux. On Debian / Ubuntu -like OS: use `sudo apt-get install google-perftools` Or, on RedHat / Fedora - like OS: use `sudo yum install...

I made this PR to be merged. https://github.com/microsoft/vscode-sublime-keybindings/pull/149

Call `Finalize()` on `*stm.Sitemap` will automatically save the index & sitemap (chunk) file. And, each chunk file should have < 50M & 50000 entries. If the limit is exceeded, It...

In my situation, I have some static site files to be merged into index file. Everytime I call `Finalize()`, it will only save the local sitemap (newly saved) to index...

> It looks to me like the approval process of that PR is somehow broken... There should actually be enough reviewers now 🤷‍♂️ The merge is stuck due to a...

First, after you make and make install, you should run `make pycaffe`. Second, you should set your PYTHONPATH to compiled pycaffe, it should something like `export PYTHONPATH=/usr/caffe/python`. And then. you've...

VS编译器是为了node-gyp准备的,根据这个Issue,答案是不能。 https://github.com/nodejs/node-gyp/issues/660

0. 由于PowerShell的命令行和Cmd略有区别,此处建议使用Cmd进行操作 1. 首先,我建议不要单独安装BuildTools而是把整个VS Community 2015装上,不过如果只是为了编译,功能部分只需要把C++的勾上就好 2. 另外,需要安装Python 2.7 (node-gyp文档上说3.x.x不支持) 3. 需要安装npm包node-gyp `npm install -g node-gyp` 4. 在编译的时候node-gyp会找npm包windows-build-tools里的python,而不会管系统上的Python。 由于我们的Python是自己独立安装的,所以需要在npm中指定PYTHON环境变量: `npm config set python ######`, 同时,建议也设置一下Windows全局的环境变量(这是临时设置,也可以在系统设置全局的永久环境变量): `SET PYTHON=######` (上面两个我具体不确定哪个有用,可以都加上) 其中####为Python 2.7可执行文件的路径...