0

このエラーが発生し続けました。ターミナルでスクリプトを開くことができません。私のアイドル状態と私の 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() 
4

1 に答える 1

2
  1. hello.py は~/Desktop/Scripts/ではなく にあり~/anotherprojectます。試すpython ~/Desktop/Scripts/hello.py
  2. 正しい権限が設定されていない可能性があります。python は現在のシェル ユーザーとして実行されますが、別のユーザーが所有しているため、ファイルを読み取れない可能性があります。入力してみls -alhて、出力を表示してください。
于 2012-09-02T22:03:14.443 に答える