You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is the traceback:
Traceback (most recent call last):
File "h:\Python\Python34\Scripts\lice-script.py", line 9, in
load_entry_point('lice==0.4', 'console_scripts', 'lice')()
File "H:\Python\Python34\lib\site-packages\lice__init__.py", line 6, in main
main()
File "H:\Python\Python34\lib\site-packages\lice\core.py", line 171, in main
content = generate_license(template.decode("UTF-8"), get_context(args))
AttributeError: 'str' object has no attribute 'decode'
That method is only in Python 2, and it does not support Python 3, but lice is in the category called Programming Language :: Python :: 3. That's confusing,
The text was updated successfully, but these errors were encountered:
Do you install lice using pip?
I also got problems with Python34 using pip to install lice.
Maybe you should clone this repo and use python setup.py install to install(It works with me :)
Here is the traceback:
Traceback (most recent call last):
File "h:\Python\Python34\Scripts\lice-script.py", line 9, in
load_entry_point('lice==0.4', 'console_scripts', 'lice')()
File "H:\Python\Python34\lib\site-packages\lice__init__.py", line 6, in main
main()
File "H:\Python\Python34\lib\site-packages\lice\core.py", line 171, in main
content = generate_license(template.decode("UTF-8"), get_context(args))
AttributeError: 'str' object has no attribute 'decode'
That method is only in Python 2, and it does not support Python 3, but lice is in the category called Programming Language :: Python :: 3. That's confusing,
The text was updated successfully, but these errors were encountered: