'cp949'编解码器无法解码位置2095中的字节0xe2:非法多字节序列,命令“python setup.py egg_info”失败,错误代码为1

时间:2017-12-04 08:24:10

标签: python pip counter

当我安装计数器包时,会出现一些问题。 PLZ有人帮帮我!!我搜索了许多解决方案,但它们不能解决我的问题。我认为'Temp'有问题,但我不确定。

  

C:\ Users \ x3k-k37 \ Desktop> pip install counter收集计数器
  使用缓存的Counter-1.0.0.tar.gz       从命令python setup.py egg_info完成输出:       Traceback(最近一次调用最后一次):         文件“”,第1行,in         文件“C:\ Users \ x3k-k37 \ AppData \ Local \ Temp \ pip-build-b488v7dx \ counter \ setup.py”,   第32行,在           LONG_DESCRIPTION = getLongDescription(),         文件“C:\ Users \ x3k-k37 \ AppData \ Local \ Temp \ pip-build-b488v7dx \ counter \ setup.py”,   第13行,在getLongDescription中           对于文件中的行:       UnicodeDecodeError:'cp949'编解码器无法解码位置2095中的字节0xe2:非法多字节序列

     

命令“python setup.py egg_info”失败,错误代码为1   C:\ Users \用户x3k-K37 \应用程序数据\本地\ TEMP \ PIP-集结b488v7dx \计数器\

1 个答案:

答案 0 :(得分:1)

  
      
  1. 从github(https://github.com/KelSolaar/Counter)下载了“计数器包”。   请参阅README.rst中的安装)
  2.   
  3. 在下载的文件夹中打开“计数器”

  4.   
  5. 在下面编辑setup.py

  6.   
import re
from setuptools import setup

setup(name="Counter",
version="1.0.0",
author="Thomas Mansencal",
author_email="thomas.mansencal@gmail.com",
include_package_data=True,
py_modules=["counter"],
url="https://github.com/KelSolaar/Counter",
license="MIT",
description="Counter package defines the \"counter.Counter\" class similar to bags or multisets in other languages.",
install_requires=[],
tests_require=["nose"],
classifiers=["Development Status :: 5 - Production/Stable",
            "Environment :: Console",
            "Intended Audience :: Developers",
            "License :: OSI Approved :: MIT License",
            "Natural Language :: English",
            "Operating System :: OS Independent",
            "Programming Language :: Python",
            "Topic :: Utilities"]) 
  
      
  1. 安装“计数器包”
  2.   
python setup.py install