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
With pandoc installed the setup.py failed because pandoc seems to introduce non ascii characters. Repeating the commands from setup.py
setup.py
>>> import subprocess >>> pandoc = subprocess.Popen(['pandoc', 'README.md', '--to', 'rst'], stdout=subprocess.PIPE) >>> readme = pandoc.communicate()[0] >>> readme.decode() Traceback (most recent call last): File "<stdin>", line 1, in <module> UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 3325: ordinal not in range(128) >>> readme[3310:3340] 's using Ipython\xe2\x80\x99s ``%%`` `ce'
computer: linux, archlinux pandoc version 2.0.6 tested on python 2.7.14
See also downstream issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With pandoc installed the
setup.py
failed because pandoc seems to introduce non ascii characters. Repeating the commands fromsetup.py
computer: linux, archlinux
pandoc version 2.0.6
tested on python 2.7.14
See also downstream issue.
The text was updated successfully, but these errors were encountered: