Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fix "OSError: could not get source code" error when installing playsound?

    Collecting playsound
      Using cached playsound-1.3.0.tar.gz (7.7 kB)
      Installing build dependencies ... done
      Getting requirements to build wheel ... error
      error: subprocess-exited-with-error

      × Getting requirements to build wheel did not run successfully.
      │ exit code: 1
      ╰─> [29 lines of output]
          Traceback (most recent call last):
            File "C:\Users\INTEL\AppData\Local\Programs\Python\Python311\Lib\site-packages\pip\_vendor\pyproject_hooks\_in_process\_in_process.py", line 353, in <module>
              main()
            File "C:\Users\INTEL\AppData\Local\Programs\Python\Python311\Lib\site-packages\pip\_vendor\pyproject_hooks\_in_process\_in_process.py", line 335, in main
              json_out['return_val'] = hook(**hook_input['kwargs'])
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
            File "C:\Users\INTEL\AppData\Local\Programs\Python\Python311\Lib\site-packages\pip\_vendor\pyproject_hooks\_in_process\_in_process.py", line 118, in get_requires_for_build_wheel
              return hook(config_settings)
                     ^^^^^^^^^^^^^^^^^^^^^
            File "C:\Users\INTEL\AppData\Local\Temp\pip-build-env-9ac5eef9\overlay\Lib\site-packages\setuptools\build_meta.py", line 341, in get_requires_for_build_wheel
              return self._get_build_requires(config_settings, requirements=['wheel'])
                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
            File "C:\Users\INTEL\AppData\Local\Temp\pip-build-env-9ac5eef9\overlay\Lib\site-packages\setuptools\build_meta.py", line 323, in _get_build_requires 
              self.run_setup()
            File "C:\Users\INTEL\AppData\Local\Temp\pip-build-env-9ac5eef9\overlay\Lib\site-packages\setuptools\build_meta.py", line 488, in run_setup
              self).run_setup(setup_script=setup_script)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
            File "C:\Users\INTEL\AppData\Local\Temp\pip-build-env-9ac5eef9\overlay\Lib\site-packages\setuptools\build_meta.py", line 338, in run_setup
              exec(code, locals())
            File "<string>", line 6, in <module>
            File "C:\Users\INTEL\AppData\Local\Programs\Python\Python311\Lib\inspect.py", line 1270, in getsource
              lines, lnum = getsourcelines(object)
                            ^^^^^^^^^^^^^^^^^^^^^^
            File "C:\Users\INTEL\AppData\Local\Programs\Python\Python311\Lib\inspect.py", line 1252, in getsourcelines
              lines, lnum = findsource(object)
                            ^^^^^^^^^^^^^^^^^^
            File "C:\Users\INTEL\AppData\Local\Programs\Python\Python311\Lib\inspect.py", line 1081, in findsource
              raise OSError('could not get source code')
          OSError: could not get source code
          [end of output]
    
  note: This error originates from a subprocess, and is likely not a     problem with pip.

    error: subprocess-exited-with-error

    × Getting requirements to build wheel did not run successfully.
    │ exit code: 1
    ╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.

I tried to update Python version and pip version.

like image 690
being433 Avatar asked Dec 19 '25 23:12

being433


2 Answers

This works to solve the issue:

pip install --upgrade wheel
like image 177
Saarth Desai Avatar answered Dec 24 '25 12:12

Saarth Desai


Use the following:

pip install --upgrade setuptools wheel
pip install playsound
like image 28
Christopher Avatar answered Dec 24 '25 11:12

Christopher



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!