簡體   English   中英

Python3.6.2安裝包導致錯誤

[英]Python3.6.2 install package cause error

蟒蛇:3.6.2

創建虛擬環境:

python -m venv venv

安裝包:

pip install flask

導致異常:

Exception:
Traceback (most recent call last):
  File "d:\python36-32\lib\site-packages\pip\basecommand.py", line 215, in main
    status = self.run(options, args)
  File "d:\python36-32\lib\site-packages\pip\commands\install.py", line 342, in run
    prefix=options.prefix_path,
  File "d:\python36-32\lib\site-packages\pip\req\req_set.py", line 784, in install
    **kwargs
  File "d:\python36-32\lib\site-packages\pip\req\req_install.py", line 851, in install
    self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
  File "d:\python36-32\lib\site-packages\pip\req\req_install.py", line 1064, in move_wheel_files
    isolated=self.isolated,
  File "d:\python36-32\lib\site-packages\pip\wheel.py", line 247, in move_wheel_files
    prefix=prefix,
  File "d:\python36-32\lib\site-packages\pip\locations.py", line 141, in distutils_scheme
    d.parse_config_files()
  File "d:\python36-32\lib\distutils\dist.py", line 395, in parse_config_files
    parser.read(filename)
  File "d:\python36-32\lib\configparser.py", line 697, in read
    self._read(fp, filename)
  File "d:\python36-32\lib\configparser.py", line 1015, in _read
    for lineno, line in enumerate(fp, start=1):
UnicodeDecodeError: 'gbk' codec can't decode byte 0x9d in position 0: incomplete multibyte sequence

怎么解決呢?

我只是刪除了項目中的一個文件,然后pip再次正常工作。 很奇怪!

該文件是setup.cfg。 根據燒瓶教程

[egg_info] tag_build = .dev tag_date = 1

[aliases] release = egg_info -RDb ”

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM