-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python 3.6 install error #12
Comments
Continued issues:
returns an ImportError,
I'm currently in the process of investigating, but any help would be appreciated. |
It seems to load okay if the line in init.py that reads |
@tonywong94 could you submit that fix as a PR? |
Not really git savvy, sorry. Will bug Dario. I know how to do that! |
Just so you know, this still seems to be an issue. Fixed it for my system using the steps above... |
I faced these as well today. The suggested fix works. I have added a PR |
I'm reviving this because I'm having trouble installing (on Python 3.7.5), I get the following error: AttributeError: module 'distutils.config' has no attribute 'ConfigParser' |
Hello,
I was recently trying to install this package in Python 3.6 but was running into some minor errors when installing. Looking into the issue I found that it was due to a change in distutils over previous versions, where ConfigParser (in older distutils) was renamed into RawConfigParser. All I did was locally change the following lines in setup.py
Original:
Changed:
This fixed my issue; not sure if any others have had this same issue, but it is a fairly simple fix and if you could fix it now in the raw it would be appreciated. Thanks for your time.
The text was updated successfully, but these errors were encountered: