-
Notifications
You must be signed in to change notification settings - Fork 46
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
python3 incompatibility #5
Comments
something also have to be done in py3.6 |
thx |
No need to change BoxBlur.py. |
Python 3 implementation: https://github.com/misaelbg/pyblur |
@misaelbg Do you still have this implementation available? It seems that the URL is broken. Thanks! |
Why did you remove this? |
No need to change BoxBlur.py+1 |
Hi,
I was using pip3 install pyblur but found cannot import pyblur after the installation.
error is like:
ModuleNotFoundError: No module named 'LineDictionary'
This is due to the different syntax for py2 and py3. To fix this issue, 3 places needs to modified.
psfDictionary = pickle.load(pklfile) to psfDictionary = pickle.load(pklfile, encoding='latin1')
Then it should work.
The text was updated successfully, but these errors were encountered: