MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    MMM-voice

    Scheduled Pinned Locked Moved Utilities
    voice control
    329 Posts 55 Posters 918.8k Views 50 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • C Offline
      c.keen
      last edited by yawns

      found the bashrc file !
      the last few lines it does not comment on magic mirror or a module itself … (?)

      # enable programmable completion features (you don't need to enable
      # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
      # sources /etc/bash.bashrc).
      if ! shopt -oq posix; then
        if [ -f /usr/share/bash-completion/bash_completion ]; then
          . /usr/share/bash-completion/bash_completion
        elif [ -f /etc/bash_completion ]; then
          . /etc/bash_completion
        fi
      fi
      export LD_LIBRARY_PATH=:/usr/local/lib
      export PKG_CONFIG_PATH=:/usr/local/lib/pkgconfig
      export LD_LIBRARY_PATH=:/usr/local/lib:/usr/local/lib
      export PKG_CONFIG_PATH=:/usr/local/lib/pkgconfig:/usr/local/lib/pkgconfig
      
      1 Reply Last reply Reply Quote 0
      • C Offline
        c.keen
        last edited by

        the bold part was not in the file itself (the forum software did it). The file ends with … pkgconfig as can be seen above

        strawberry 3.141S 1 Reply Last reply Reply Quote 0
        • strawberry 3.141S Offline
          strawberry 3.141 Project Sponsor Module Developer @c.keen
          last edited by

          @c.keen ok looks like you ran the installer multiple times, but your links are set so it should find the libpocketsphinx. Did you try to restart the raspberry or the terminal?

          Please create a github issue if you need help, so I can keep track

          1 Reply Last reply Reply Quote 0
          • C Offline
            c.keen
            last edited by

            At first when I tried to install using the bash script it stopped at the second step (can’t remember exactly why). But second time it worked itself completely through the steps. Starting the mirror I got the “Error” message. Then I read the thread here completely and removed all components necessary.
            I installed it again using the script and no warnings or errors were reported. But still, after “initialising” the Error message was displayed. ?? As described in the error.log I found “127” and in the debug.log the long message I reported in an earlier thread.
            I still have no idea …

            1 Reply Last reply Reply Quote 0
            • C Offline
              c.keen
              last edited by

              And I started the raspberry and the terminal multiple times since the error

              1 Reply Last reply Reply Quote 0
              • lucallmonL Offline
                lucallmon
                last edited by

                My entire mirror is JACKED UP hard after trying to install this module. How do I go about deleting all dependencies and everything in relation to this module?

                Going through the dependencies setup, it got to 5/6 and it gave me a slew of errors and then stopped. I’ve tried multiple times to re-install and it gives me the same. Now all I want to do is get rid of of it so I can go back to a working mirror. Any help would be greatly appreciated. @strawberry-3-141 @Mykle1

                strawberry 3.141S 1 Reply Last reply Reply Quote 0
                • strawberry 3.141S Offline
                  strawberry 3.141 Project Sponsor Module Developer @lucallmon
                  last edited by

                  @lucallmon would be interesting what these errors are, because step 5/6 is only performing a usual npm install as you do in most of the modules.

                  • remove the module directory
                  • open your bashrc file and delete at the bottom:
                  export LD_LIBRARY_PATH=:/usr/local/lib
                  export PKG_CONFIG_PATH=:/usr/local/lib/pkgconfig
                  
                  • in /home/pi/ there should be directories called pocketsphinx and sphinxbase, go into them and execute make uninstall, afterwards you can remove them.
                  • run apt-get autoremove to uninstall dependencies that are not longer needed on your system

                  Please create a github issue if you need help, so I can keep track

                  strawberry 3.141S 1 Reply Last reply Reply Quote 0
                  • lucallmonL Offline
                    lucallmon
                    last edited by

                    during [STEP 5/6] Installing npm dependencies

                    I get the following errors and then it stops: ```
                    npm ERR! Linux 4.4.50-v7+
                    npm ERR! argv “/usr/bin/nodejs” “/usr/bin/npm” “install”
                    npm ERR! node v6.10.0
                    npm ERR! npm v3.10.10
                    npm ERR! path /home/pi/MagicMirror/modules/MMM-voice
                    npm ERR! code EACCES
                    npm ERR! errno -13
                    npm ERR! syscall access

                    npm ERR! Error: EACCES: permission denied, access ‘/home/pi/MagicMirror/modules/MMM-voice’
                    npm ERR! at Error (native)
                    npm ERR! { Error: EACCES: permission denied, access ‘/home/pi/MagicMirror/modules/MMM-voice’
                    npm ERR! at Error (native)
                    npm ERR! errno: -13,
                    npm ERR! code: ‘EACCES’,
                    npm ERR! syscall: ‘access’,
                    npm ERR! path: ‘/home/pi/MagicMirror/modules/MMM-voice’ }
                    npm ERR!
                    npm ERR! Please try running this command again as root/Administrator.
                    npm ERR! Linux 4.4.50-v7+
                    npm ERR! argv “/usr/bin/nodejs” “/usr/bin/npm” “install”
                    npm ERR! node v6.10.0
                    npm ERR! npm v3.10.10
                    npm ERR! path npm-debug.log.3606122589
                    npm ERR! code EACCES
                    npm ERR! errno -13
                    npm ERR! syscall open

                    npm ERR! Error: EACCES: permission denied, open ‘npm-debug.log.3606122589’
                    npm ERR! at Error (native)
                    npm ERR! { Error: EACCES: permission denied, open ‘npm-debug.log.3606122589’
                    npm ERR! at Error (native)
                    npm ERR! errno: -13,
                    npm ERR! code: ‘EACCES’,
                    npm ERR! syscall: ‘open’,
                    npm ERR! path: ‘npm-debug.log.3606122589’ }
                    npm ERR!
                    npm ERR! Please try running this command again as root/Administrator.

                    npm ERR! Please include the following file with any support request:
                    npm ERR! /home/pi/MagicMirror/modules/MMM-voice/npm-debug.log
                    [STEP 5/6] Installing npm dependencies | Failed

                    
                    thoughts?
                    strawberry 3.141S 1 Reply Last reply Reply Quote 0
                    • strawberry 3.141S Offline
                      strawberry 3.141 Project Sponsor Module Developer @lucallmon
                      last edited by strawberry 3.141

                      @lucallmon these are some access right issues, how do you run the installer?

                      Please create a github issue if you need help, so I can keep track

                      lucallmonL 2 Replies Last reply Reply Quote 0
                      • lucallmonL Offline
                        lucallmon @strawberry 3.141
                        last edited by

                        @strawberry-3.141 I did not use sudo should I?

                        strawberry 3.141S 1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 8
                        • 9
                        • 10
                        • 11
                        • 12
                        • 32
                        • 33
                        • 10 / 33
                        • First post
                          Last post
                        Enjoying MagicMirror? Please consider a donation!
                        MagicMirror created by Michael Teeuw.
                        Forum managed by Sam, technical setup by Karsten.
                        This forum is using NodeBB as its core | Contributors
                        Contact | Privacy Policy