We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm using Python 3.6.1 and am getting a ModuleNotFoundError.
import StringIO ModuleNotFoundError: No module named 'StringIO'
It seems the solution is:
try: from StringIO import StringIO except ImportError: from io import StringIO
http://stackoverflow.com/a/18284900/1783439
The text was updated successfully, but these errors were encountered:
I agree with your solution. The same patch was applied to launcher.py in PR #2, but it still needs to be applied other places in the package.
Sorry, something went wrong.
Status on issue? pip3 install webcam-streamer; webcam-streamer doesn't work due to this atm.
pip3 install webcam-streamer; webcam-streamer
Make the same changes in streamer/init.py and it works, but I'm stuck on the next import atm... I'll PR the change once it's running!
No branches or pull requests
I'm using Python 3.6.1 and am getting a ModuleNotFoundError.
import StringIO ModuleNotFoundError: No module named 'StringIO'
It seems the solution is:
http://stackoverflow.com/a/18284900/1783439
The text was updated successfully, but these errors were encountered: