-1

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
    
Kova
  • 1
  • 1

2 Answers2

0

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.

ZiyadCodes
  • 379
  • 3
  • 10
  • if its in the wrong place how could i fix that – Kova Feb 20 '22 at 17:04
  • Idk, if you can run `pip show pipwin` then you shouldn't get this error`(ObjectNotFound: (pipwin: String))` when you run `pipwin install pyaudio` and you should be able to not get an error when you run `pipwin` in the terminal – ZiyadCodes Feb 21 '22 at 08:23
  • mybe it is in the wrong place or similar – Kova Feb 21 '22 at 15:42
  • @Kova Try to type `pip install pipwin` in the terminal(If on VSCode you can press ctrl+j to open it) and then try running `pipwin install pyaudio` and tell me what is the output you get – ZiyadCodes Feb 21 '22 at 15:48
  • all the requerments are satisfied but 'pipwin' is not recognized as an internal or external command,operable program or batch file.' – Kova Feb 23 '22 at 20:42
  • Sorry for answering very late. But did you run `pip install pipwin` before you ran `pipwin install pyaudio`? – ZiyadCodes Mar 05 '22 at 10:34
  • yes i did,should i mybe change the python version to 3.6 – Kova Mar 06 '22 at 21:07
  • maybe. Can you send what output you get when you write `pip install pipwin`? – ZiyadCodes Mar 07 '22 at 16:49
  • Requirement already satisfied: pipwin in c:\users\matija\appdata\local\packages\pythonsoftwarefoundation.python.3.9_qbz5n2kfra8p0\localcache\local-packages\python39\site-packages (0.5.1) its like this for every file – Kova Mar 09 '22 at 15:20
0

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)?

Steven-MSFT
  • 7,438
  • 1
  • 5
  • 13
  • pip show pipwin works but get-command pipwin and where pipwin dont work – Kova Feb 17 '22 at 20:48
  • what's the location of `pipwin`, and which python interpreter you have selected? – Steven-MSFT Feb 18 '22 at 07:27
  • I am using Vs code and the location is c:\users\matija\appdata\local\packages\pythonsoftwarefoundation.python.3.9_qbz5n2kfra8p0\localcache\local-packages\python39\site-packages – Kova Feb 18 '22 at 20:34