Mac终端不管输入什么指令都显示No such file or directory?

写了一个python文件,在Mac终端输入指令总是显示:
python: can’t open file ‘这是我的文件名’: [Errno 2] No such file or directory
看了半天,发现是环境变量的事 .bash_profile不知道怎么的被删除了

接下来就是解决这个问题了:Mac上找不到.bash_profile该怎么办?
1、创建 .bash_profile

(1) 启动终端
(2) 进入当前用户的home目录(默认就是):
cd ~ 或 cd /Users/YourMacUserName
(3)输入touch .bash_profile

2、查看 、编辑 .bash_profile 文件
(1)终端输入 open -e .bash_profile
(如果只是查看,直接使用open .bash_profile)
(2)编辑
(3)关闭即可保存修改

参考博文:https://blog.csdn.net/huxinguang_ios/article/details/78709428

你可能感兴趣的:(Mac终端不管输入什么指令都显示No such file or directory?)