python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
DistributionNotFound: 'six>=1.4.0' is required
I'm trying to make an exe out of a Python file that uses apscheduler, sqlalchemy, and Tkinter among other libraries. Once compiled, the majority of the app works fine, except for one function that nee...
Uzair Gheewala
Votes: 0
Answers: 0
i got this error on spyder ImportError: cannot import name 'six' from 'sklearn.externals' despite i have installed the six module
File "C:\Users\Baha cherni\Desktop\python\tp\tp22222.py", line 7, in
from sklearn.externals import six
ImportError: cannot import name 'six' from 'sklearn.externals' (C:\Users\Baha cherni\a...
baha cherni
Votes: 0
Answers: 1
how to remove six.reraise in Python 3?
I have some Python legacy code that looks like this:
except ValueError as e:
new = DecodingError(
"Failed to decode value {!r} for field {}, got: {}".format(
raw_valu...
GMA
Votes: 0
Answers: 0
Automatically remove leading u'...' in Python strings
I am working on migrating an old Python code base to Python3.
There are many strings which have the "u" prefix. Example u'Umlaut üöö'
Is there an automated way to remove the leading "u&...
guettli
Votes: 0
Answers: 1