运行外部工具Android Studio时找不到错误

时间:2018-07-13 05:08:31

标签: android linux android-studio

我有一个run.sh这样的人

virtualenv -p python3 env
source env/bin/activate
pip3 install -r requirements.txt
python3 -m profilo.workflow_demo trace.log blocks

当我在终端上运行它时,运行正常,但是当我在外部工具android studio中运行此shell时,它会引发错误。

/home/cpu10475-local/Desktop/python/run.sh: 2: /home/cpu10475-local/Desktop/python/run.sh: source: not found
/home/cpu10475-local/Desktop/python/run.sh: 3: /home/cpu10475-local/Desktop/python/run.sh: pip3: not found
Process finished with exit code 1

我的工具配置在这里:

https://i.stack.imgur.com/BXsSI.png

1 个答案:

答案 0 :(得分:1)

我认为Android Studio中的外部工具不支持source。因此,您应该尝试删除前两行并安装pip3,然后再次运行该模块。