Skip to content
David Zhuang edited this page Mar 5, 2016 · 7 revisions
  • Q: I got encoding issues on Windows.

  • A: Change your Windows code page to UTF-8, using chcp 65001.

  • Q: I don't know how to install it on Windows.

  • A: Then don't do it. Just put your you-get folder into system %PATH%.

  • Q: I got something like UnicodeDecodeError: 'gbk' codec can't decode byte 0xb0 in position 1012: illegal multibyte sequence.

  • A: Run set PYTHONIOENCODING=utf-8.

  • Q: Special characters in the URL (such as ?, &) are interpreted by my shell. How to prevent this?

  • A: Use noglob.

汉语最后翻译日期:2016年03月04日

  • Q: Windows下编码问题。

  • A:使用UTF-8编码, using chcp 65001.

chcp

  • Q: 不知道怎么在Windows下安装.

  • A: 那就别安了,把you-get目录放进系统%PATH%.

  • Q: UnicodeDecodeError: 'gbk' codec can't decode byte 0xb0 in position 1012: illegal multibyte sequence.

  • A: 执行 set PYTHONIOENCODING=utf-8.

  • Q: 命令行下,URL有些特殊字符被执行了(例如 ?, &)。如何避免?

  • A: 使用 noglob.

Clone this wiki locally