我剛安裝了Python 3.3,然後我試圖通過發出以下命令來安裝rauth:PIP安裝rauth失敗:語法錯誤
PIP安裝rauth
,我得到這個錯誤:
Downloading/unpacking rauth
Running setup.py egg_info for package rauth
Traceback (most recent call last):
File "<string>", line 16, in <module>
File "c:\users\pipul\appdata\local\temp\pip-build-pipul\rauth\setup.py", l
ine 4, in <module>
from rauth import __version__
File ".\rauth\__init__.py", line 30, in <module>
from .service import OAuth1Service, OAuth2Service, OflyService
File ".\rauth\service.py", line 23
except KeyError, e: # pragma: no cover
^
SyntaxError: invalid syntax
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 16, in <module>
File "c:\users\pipul\appdata\local\temp\pip-build-pipul\rauth\setup.py", line 4, in <module>
from rauth import __version__
File ".\rauth\__init__.py", line 30, in <module>
from .service import OAuth1Service, OAuth2Service, OflyService
File ".\rauth\service.py", line 23
except KeyError, e: # pragma: no cover
^
SyntaxError: invalid syntax
----------------------------------------
Command python setup.py egg_info failed with error code 1 in c:\users\pipul\appd
ATA \本地\ TEMP \ PIP-集結pipul \ rauth 保存完整的日誌在C:\用戶\ pipul \ PIP \ pip.log
## Heading ##c:\Python33\Scripts>
同樣,安裝oauth2也會失敗。但安裝硒成功。
現在可能是什麼原因導致了這種失敗?
在此先感謝。
該軟件包不支持Python 3. – Blender