omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    Can't install pyttsx3 module

    Pythonista
    6
    33
    17355
    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.
    • JonB
      JonB last edited by JonB

      Make sure you don't have a speech.py in site-packages, or in the same folder as the main script you are running. Also make sure you don't have any folders called speech inside site-packages, that includes an init file.

      As a check, in the console, try

      import speech
      

      If that fails, look at the traceback to show you what failed, which should include a path to the module it was trying to import.

      1 Reply Last reply Reply Quote 0
      • cvp
        cvp last edited by

        You can also try

        import speech
        import inspect
        print(inspect.getfile(speech)) 
        

        Either you will get an error module 'speech' (built-in)> is a built-in module
        Either you will get its path if another speech module is imported

        lyubomyr83 1 Reply Last reply Reply Quote 0
        • lyubomyr83
          lyubomyr83 @cvp last edited by

          @cvp
          get an error module 'speech' (built-in)> is a built-in module

          cvp JonB 2 Replies Last reply Reply Quote 0
          • cvp
            cvp @lyubomyr83 last edited by

            @lyubomyr83 thus, you did not remove it...

            1 Reply Last reply Reply Quote 0
            • JonB
              JonB @lyubomyr83 last edited by JonB

              @lyubomyr83 why do you think you deleted the speech module? What error do you get when you try to use it?

              Or, are you talking the SpeechModule script that was shared?

              In that case, just copy the code again, paste into the editor, and name it something other than speech...

              lyubomyr83 1 Reply Last reply Reply Quote 0
              • lyubomyr83
                lyubomyr83 @JonB last edited by lyubomyr83

                @JonB i have two same 3rd generation ipads, run the same program and have voice in one of them and not in another one. Yes, voice is on ))) in settings. And i have not errors.

                cvp JonB 2 Replies Last reply Reply Quote 0
                • cvp
                  cvp @lyubomyr83 last edited by

                  @lyubomyr83 could you try the iOS Shortuts app with "speak text" command, only to check if the problem could come from the hardware and not from Pythonista

                  lyubomyr83 1 Reply Last reply Reply Quote 0
                  • lyubomyr83
                    lyubomyr83 @cvp last edited by

                    @cvp in iOS settings/speech i hear sound when i change speed (Turtle)

                    cvp 1 Reply Last reply Reply Quote 0
                    • cvp
                      cvp @lyubomyr83 last edited by cvp

                      @lyubomyr83 ok, but did you try the shortcut ?

                      And is your script as short as

                      import speech
                      speech.say("привет друг", "ru-RU")  # hello friend
                      
                      1 Reply Last reply Reply Quote 0
                      • JonB
                        JonB @lyubomyr83 last edited by

                        @lyubomyr83 check that the mute alarms is not set in the pull down settings. If you have a physical mute switch, make sure it is not set to mute. If you have a physical switch that you toggled to lock rotation, then make sure the swipe settings doesn't show mute.

                        Even when volume is turned up, pythonista honors the mute setting for some sounds.

                        1 Reply Last reply Reply Quote 1
                        • First post
                          Last post
                        Powered by NodeBB Forums | Contributors