Home > Software engineering >  i installed pipwin but cant install pyaudio
i installed pipwin but cant install pyaudio

Time:02-17

pipwin install PyAudio pipwin : The term 'pipwin' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1

  • pipwin install PyAudio
  •     CategoryInfo          : ObjectNotFound: (pipwin:String) [], CommandNotFoundException
        FullyQualifiedErrorId : CommandNotFoundException
    

CodePudding user response:

This error (ObjectNotFound: (pipwin:String)) is telling you that pipwin can't be found which means that you either installed it in the wrong place or you didn't install it. To install pipwin you can go to the directory that you have your script in and type cmd in the title bar, like up here (This is an image). Then you can type pip install pipwin. Or you can type it in the terminal of the IDE that your using.

CodePudding user response:

Could you try to execute pip install pipwin again? It looks like you have not installed it or you have not installed it in the environment you have selected.

If it works, could you execute pip show pipwin and get-command pipwin(PowerShell) or where pipwin(CMD)?

  • Related