0

i am attempting to install the port audio module and in doing so it says that there is no module named "ConfigParser". I understand that the newer version of the module is configparser but im not sure how to install it. Does anyone have any solutions because this is what the terminal reports:

PS F:> pip install port audio

    import ConfigParser
ModuleNotFoundError: No module named 'ConfigParser'**
----------------------------------------**

ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

wise_ones_rus
  • 11
  • 1
  • 1
  • 2

1 Answers1

0

Try this:

from configparser import ConfjgParser

This should hopefully make the other import treat it like the old version.