当我想使用终端命令安装 PyAutoIt 时:
pip install PyAutoIt
我在终端中收到此错误:
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-9cAwZr/PyAutoIt/
以前有没有人遇到过同样的问题,任何建议都会有所帮助。
我想使用 ptipython 来运行 Web 驱动程序。
所以我首先使用pip install ipython
, 和 ptipython 以相同的方式安装了 iPython。我在使用提示工具包版本时遇到了一些问题,但我以某种方式解决了它们。
现在,当我运行 ipython 时,它开始时没有问题,但是当我运行 ptipython 时,这是我得到的错误:
Traceback (most recent call last):
File "/usr/local/bin/ptipython", line 11, in <module>
sys.exit(run())
File "/usr/local/lib/python2.7/dist-packages/ptpython/entry_points/run_ptipython.py", line 41, in run
from ptpython.ipython import embed
File "/usr/local/lib/python2.7/dist-packages/ptpython/ipython.py", line 14, in <module>
from prompt_toolkit.completion import PathCompleter, WordCompleter
ImportError: cannot import name PathCompleter
我怎样才能解决这个问题?