GithubHelp home page GithubHelp logo

Comments (9)

dashersw avatar dashersw commented on June 14, 2024 1

This is a weird issue, are you sure you're installing it from scratch? How about if you try to delete lib/emokit-c library with something like rm -r lib/emokit-c?

from wits.

dashersw avatar dashersw commented on June 14, 2024 1

OK! I managed to get it running under Ubuntu! I'll post the details soon.

from wits.

dashersw avatar dashersw commented on June 14, 2024 1

I have published [email protected] (also on the master branch), can you try installing it? It should be working!

from wits.

dashersw avatar dashersw commented on June 14, 2024 1

you can use brain-monitor to see if it works with your Emotiv headset.

from wits.

titusfx avatar titusfx commented on June 14, 2024

Hi! After I tried rm -r lib/emokit-c now I got the following error:

> [email protected] install /home/a-username/Projects/testing/wits
> node-gyp configure && node-gyp build

make: Entering directory '/home/a-username/Projects/testing/wits/build'
  CXX(target) Release/obj.target/emotiv/lib/bindings.o
In file included from /usr/include/c++/7/ext/string_conversions.h:43:0,
                 from /usr/include/c++/7/bits/basic_string.h:6352,
                 from /usr/include/c++/7/string:52,
                 from /usr/include/c++/7/stdexcept:39,
                 from /usr/include/c++/7/array:39,
                 from /usr/include/c++/7/tuple:39,
                 from /usr/include/c++/7/functional:54,
                 from /home/a-username/Projects/testing/wits/node_modules/node-addon-api/napi.h:5,
                 from ../lib/bindings.cc:7:
/usr/include/c++/7/cstdio:110:11: error: ‘::fprintf’ has not been declared
   using ::fprintf;
           ^~~~~~~
In file included from ../lib/bindings.cc:9:0:
../lib/emotiv.cc: In function ‘void close()’:
../lib/emotiv.cc:12:5: error: ‘fprintf’ was not declared in this scope
     fprintf(stdout, "closing...\n");
     ^~~~~~~
../lib/emotiv.cc:12:5: note: suggested alternative: ‘dprintf’
     fprintf(stdout, "closing...\n");
     ^~~~~~~
     dprintf
../lib/emotiv.cc: In function ‘void cleanup(int)’:
../lib/emotiv.cc:22:5: error: ‘fprintf’ was not declared in this scope
     fprintf(stdout, "Shutting down\n");
     ^~~~~~~
../lib/emotiv.cc:22:5: note: suggested alternative: ‘dprintf’
     fprintf(stdout, "Shutting down\n");
     ^~~~~~~
     dprintf
../lib/emotiv.cc: In function ‘int connect()’:
../lib/emotiv.cc:36:5: error: ‘fprintf’ was not declared in this scope
     fprintf(stdout, "Current epoc devices connected: %d\n", count);
     ^~~~~~~
../lib/emotiv.cc:36:5: note: suggested alternative: ‘dprintf’
     fprintf(stdout, "Current epoc devices connected: %d\n", count);
     ^~~~~~~
     dprintf
../lib/emotiv.cc: In function ‘emokit_frame get_frame()’:
../lib/emotiv.cc:83:9: error: ‘fprintf’ was not declared in this scope
         fprintf(stderr, "Headset Timeout...\n");
         ^~~~~~~
../lib/emotiv.cc:83:9: note: suggested alternative: ‘dprintf’
         fprintf(stderr, "Headset Timeout...\n");
         ^~~~~~~
         dprintf
../lib/bindings.cc: In function ‘napi_value__* Init(napi_env, napi_value)’:
../lib/bindings.cc:306:5: error: ‘fprintf’ was not declared in this scope
     fprintf(stdout, "set logger", NULL, log);
     ^~~~~~~
../lib/bindings.cc:306:5: note: suggested alternative: ‘dprintf’
     fprintf(stdout, "set logger", NULL, log);
     ^~~~~~~
     dprintf
emotiv.target.mk:106: recipe for target 'Release/obj.target/emotiv/lib/bindings.o' failed
make: *** [Release/obj.target/emotiv/lib/bindings.o] Error 1
make: Leaving directory '/home/a-username/Projects/testing/wits/build'
gyp ERR! build error 
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack     at ChildProcess.onExit (/usr/share/node-gyp/lib/build.js:258:23)
gyp ERR! stack     at emitTwo (events.js:126:13)
gyp ERR! stack     at ChildProcess.emit (events.js:214:7)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:198:12)
gyp ERR! System Linux 4.15.0-45-generic
gyp ERR! command "/usr/bin/node" "/usr/bin/node-gyp" "build"
gyp ERR! cwd /home/a-username/Projects/testing/wits
gyp ERR! node -v v8.10.0
gyp ERR! node-gyp -v v3.6.2
gyp ERR! not ok 

npm ERR! Linux 4.15.0-45-generic
npm ERR! argv "/usr/bin/node" "/usr/bin/npm" "install"
npm ERR! node v8.10.0
npm ERR! npm  v3.5.2
npm ERR! code ELIFECYCLE
npm ERR! [email protected] install: `node-gyp configure && node-gyp build`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the [email protected] install script 'node-gyp configure && node-gyp build'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the wits package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-gyp configure && node-gyp build
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs wits
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls wits
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /home/a-username/Projects/testing/wits/npm-debug.log

from wits.

dashersw avatar dashersw commented on June 14, 2024

Oh at least this looks like a simpler problem. I’ll try to have a look if I can redeclare fprintf. I think this is because of gcc differences in Mac and in Linux — it works on Mac.

Could you also maybe try Node v10?

from wits.

titusfx avatar titusfx commented on June 14, 2024

I will try with Node v10. If I get it run I will try to dockerize it. And make a pull request.

from wits.

titusfx avatar titusfx commented on June 14, 2024

Same error on Node v10

from wits.

titusfx avatar titusfx commented on June 14, 2024

Hi! After installing sudo apt-get install libmcrypt-dev I get it compiled and installed (Both projects ).But I couldn't see run. In any case, I believe that the issue is close. Thanks for the support and fast reply. I will see tomorrow how to make it connect. Happy coding!

from wits.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.