||
让python程序直接在bash(如Git Bash)下运行.
在.py文件第一行写上:
#!/usr/bin/env python3
改成可执行:
$ chmod 755 testpy.py
运行即可:
$./testpy.py
如果提示"/usr/bin/env: ‘python3’: No such file or directory"
可加个连接,指示python3的物理路径
ln -s /d/Python/Python36/python /usr/bin/python3
查看一下环境变量和路径:
$ echo $PATH
$ echo $PYTHONPATH
cat ~/.bash_profile
cat /etc/bash.bashrc
显示python的物理安装路径,通过$ type python 或$ which python显示的是:
/d/Python/Python36/python
通过python程序的print(sys.executable),
在python Shell下(通过python -i)显示的是:
D:\Python\Python36\pythonw.exe
在Git Bash下(通过运行.py)显示的是:
D:\Program Files\Git\usr\bin\python3
Archiver|手机版|科学网 ( 京ICP备07017567号-12 )
GMT+8, 2024-11-23 05:16
Powered by ScienceNet.cn
Copyright © 2007- 中国科学报社