我正在尝试通过运行来安装点亮:
python pip install lit
我收到了成功的消息:
收集点燃
安装收集的包裹:点燃
已成功安装lit-0.6.0
但是,which lit
不返回任何内容。
答案 0 :(得分:0)
如果要将其作为命令行界面启动,请尝试以下操作:
python -m lit.main
答案 1 :(得分:0)
输入:
pip install lit --user
输出:
Collecting lit
Installing collected packages: lit
Successfully installed lit-0.6.0
然后,查看库的安装位置 输入:
pip show lit
输出:
Name: lit
Version: 0.6.0
Summary: A Software Testing Tool
Home-page: http://llvm.org
Author: Daniel Dunbar
Author-email: daniel@minormatter.com
License: BSD
Location: /home/bill/.local/lib/python2.7/site-packages
上面输出的最后一行显示了安装库的目录 输入:
cd /home/bill/.local/lib/python2.7/site-packages
ls
输出:
BooleanExpression.py __init__.py LitTestCase.pyc ProgressBar.pyc ShUtil.py Test.pyc
BooleanExpression.pyc __init__.pyc llvm run.py ShUtil.pyc TestRunner.py
discovery.py LitConfig.py main.py run.pyc TestingConfig.py TestRunner.pyc
discovery.pyc LitConfig.pyc main.pyc ShCommands.py TestingConfig.pyc util.py
formats LitTestCase.py ProgressBar.py ShCommands.pyc Test.py util.pyc
答案 2 :(得分:0)
其二进制文件安装在$HOME/.local/bin
中,可能不包含在$PATH
中。如此设置:
export PATH=$HOME/.local/bin:$PATH
,然后您可以在终端中使用lit
。