Closed akakeronos closed 6 years ago
Thanks for the instructions. I'll add these to an FAQ or troubleshooting section.
By looking at the hummus.js
repo, it looks like that's where the node-gyp
and node-pre-gyp
deps are located.
I suspect a clean install of decktape for Windows could evolve to this:
npm i -g --production windows-build-tools
npm install -g --unsafe-perm decktape
I'm unsure wether --unsafe-perm
(aka "runs as root") is necessary or not—I guess necessary to run build scripts and stuff.
@akakeronos did you install Node on Windows with the official installer?
Yes I did. I installed the 5.6.0 version
@oncletom I agree this should be condensed. I may find the time to test it, otherwise I'd be inclined to document your condensed instructions and get feedback.
Okay! I installed a Windows10 VM on macOS (thanks iectrl
) to dig this a bit further.
On a fresh Win10 machine, the install step is two-fold.
Run as administrator
to install Visual Studio Build Tools and Python 2.7 :npm i -g --production windows-build-tools
npm i -g decktape
Thanks @akakeronos — I've learned about windows-build-tools
(easiest way to install Node build tools in a Node fashion for Windows) and about the --unsafe-perm
flag :-)
@oncletom @akakeronos thanks! I wish everybody would contribute as you've done 😉!
Thanks for this great piece of software !
I've just added these instructions to the FAQ with c062d1f2405ee367d0439c791db6cfc86a7e6c91.
Let me know if you have any comments and thanks again for getting the bottom line.
Thanks for this great piece of software !
@akakeronos you may want to ⭐️ the project to show support 😉!
Will do! ;)
I tried to install decktape on my computer running windows 10 (sorry:)) and the instructions displayed on the README file did not work.
I finally managed to install it running the following command
In case this helps
Thanks for this great piece of software