我有一个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
我的工具配置在这里:
答案 0 :(得分:1)
我认为Android Studio中的外部工具不支持source
。因此,您应该尝试删除前两行并安装pip3
,然后再次运行该模块。