没有这样的文件或目录-但文件存在

没有这样的文件或目录-但文件存在

我在 Windows 上使用 ubuntu,并尝试使用 screen 命令执行 python 脚本

我已导航到当前工作目录并且.py 文件存在。

我尝试运行的命令是~$ screen python streaming.py

但是我收到一个错误:

Cannot Execute Python : No such file or directoy.

谢谢!

答案1

首先打开 Screen,然后运行命令,因此:

screen

然后,导航到目录,然后:

python streaming.py

然后 (Ctrl+a) + d 分离屏幕

或者:

screen python /complete/path/to/streaming.py

相关内容