質問編集履歴

2

エラー全文追記

2017/08/06 18:01

投稿

violineer
violineer

スコア72

test CHANGED
File without changes
test CHANGED
@@ -18,6 +18,20 @@
18
18
 
19
19
  Traceback (most recent call last):
20
20
 
21
+ File "c:\program files (x86)\python36-32\lib\site-packages\pip\compat\__init__.py", line 73, in console_to_str
22
+
23
+ return s.decode(sys.__stdout__.encoding)
24
+
25
+ UnicodeDecodeError: 'utf-8' codec can't decode byte 0x97 in position 45: invalid start byte
26
+
27
+
28
+
29
+ During handling of the above exception, another exception occurred:
30
+
31
+
32
+
33
+ Traceback (most recent call last):
34
+
21
35
  File "c:\program files (x86)\python36-32\lib\site-packages\pip\basecommand.py", line 215, in main
22
36
 
23
37
  status = self.run(options, args)
@@ -30,27 +44,19 @@
30
44
 
31
45
  **kwargs
32
46
 
33
- File "c:\program files (x86)\python36-32\lib\site-packages\pip\req\req_install.py", line 851, in install
47
+ File "c:\program files (x86)\python36-32\lib\site-packages\pip\req\req_install.py", line 878, in install
34
48
 
35
- self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
49
+ spinner=spinner,
36
50
 
37
- File "c:\program files (x86)\python36-32\lib\site-packages\pip\req\req_install.py", line 1064, in move_wheel_files
51
+ File "c:\program files (x86)\python36-32\lib\site-packages\pip\utils\__init__.py", line 676, in call_subprocess
38
52
 
39
- isolated=self.isolated,
53
+ line = console_to_str(proc.stdout.readline())
40
54
 
41
- File "c:\program files (x86)\python36-32\lib\site-packages\pip\wheel.py", line 345, in move_wheel_files
55
+ File "c:\program files (x86)\python36-32\lib\site-packages\pip\compat\__init__.py", line 75, in console_to_str
42
56
 
43
- clobber(source, lib_dir, True)
57
+ return s.decode('utf_8')
44
58
 
45
- File "c:\program files (x86)\python36-32\lib\site-packages\pip\wheel.py", line 323, in clobber
46
-
47
- shutil.copyfile(srcfile, destfile)
48
-
49
- File "c:\program files (x86)\python36-32\lib\shutil.py", line 121, in copyfile
50
-
51
- with open(dst, 'wb') as fdst:
52
-
53
- PermissionError: [Errno 13] Permission denied: 'c:\\program files (x86)\\python36-32\\Lib\\site-packages\\mistune.py'
59
+ UnicodeDecodeError: 'utf-8' codec can't decode byte 0x97 in position 45: invalid start byte
54
60
 
55
61
  ```
56
62
 

1

エラーを<code>で記述

2017/08/06 18:01

投稿

violineer
violineer

スコア72

test CHANGED
File without changes
test CHANGED
@@ -12,15 +12,47 @@
12
12
 
13
13
 
14
14
 
15
+ ```python
16
+
15
17
  Exception:
16
18
 
17
19
  Traceback (most recent call last):
18
20
 
19
- File "c:\program files (x86)\python36-32\lib\site-packages\pip\compat\__init__.py", line 73, in console_to_str
21
+ File "c:\program files (x86)\python36-32\lib\site-packages\pip\basecommand.py", line 215, in main
20
22
 
21
- return s.decode(sys.__stdout__.encoding)
23
+ status = self.run(options, args)
22
24
 
25
+ File "c:\program files (x86)\python36-32\lib\site-packages\pip\commands\install.py", line 342, in run
26
+
27
+ prefix=options.prefix_path,
28
+
29
+ File "c:\program files (x86)\python36-32\lib\site-packages\pip\req\req_set.py", line 784, in install
30
+
31
+ **kwargs
32
+
33
+ File "c:\program files (x86)\python36-32\lib\site-packages\pip\req\req_install.py", line 851, in install
34
+
35
+ self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
36
+
37
+ File "c:\program files (x86)\python36-32\lib\site-packages\pip\req\req_install.py", line 1064, in move_wheel_files
38
+
39
+ isolated=self.isolated,
40
+
41
+ File "c:\program files (x86)\python36-32\lib\site-packages\pip\wheel.py", line 345, in move_wheel_files
42
+
43
+ clobber(source, lib_dir, True)
44
+
45
+ File "c:\program files (x86)\python36-32\lib\site-packages\pip\wheel.py", line 323, in clobber
46
+
47
+ shutil.copyfile(srcfile, destfile)
48
+
49
+ File "c:\program files (x86)\python36-32\lib\shutil.py", line 121, in copyfile
50
+
51
+ with open(dst, 'wb') as fdst:
52
+
23
- UnicodeDecodeError: 'utf-8' codec can't decode byte 0x97 in position 45: invalid start byte
53
+ PermissionError: [Errno 13] Permission denied: 'c:\\program files (x86)\\python36-32\\Lib\\site-packages\\mistune.py'
54
+
55
+ ```
24
56
 
25
57
 
26
58