このエラーが発生し続けました。ターミナルでスクリプトを開くことができません。私のアイドル状態と私の python コンソールは動作します。行をコピーしてアイドル状態に貼り付けたくありません。私はpython検索が間違ったパスであると思います...
私はubuntuを持っています。コピーして貼り付けたターミナルの下をご覧ください
judy@ubuntu:~$ cd anotherproject
judy@ubuntu:~/anotherproject$ python hello.py
python: can't open file 'hello.py': [Errno 2] No such file or directory
judy@ubuntu:~/anotherproject$ cd
judy@ubuntu:~$ cd Scripts
bash: cd: Scripts: No such file or directory
judy@ubuntu:~$ cd Desktop
judy@ubuntu:~/Desktop$ cd Scripts
judy@ubuntu:~/Desktop/Scripts$ python passwordgenerator.py
python: can't open file 'passwordgenerator.py': [Errno 2] No such file or directory
judy@ubuntu:~/Desktop/Scripts$ ls
gemail.py hello.py passwordgenerator.py
judy@ubuntu:~/Desktop/Scripts$
ここに私のhello.pyファイルがあります
#!/usr/bin/env python
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World!'
if __name__ == '__main__':
app.run()