5

Python (PHP 由来) を学ぼうとしていて、コーディングを開始できるように最も単純な Web サーバーをセットアップしたいと考えています。

統合された HTTP サーバーを見つけたので、それが最も簡単な方法だと思いました。

root@ubuntu:/var/py# python -m SimpleHTTPServer
Serving HTTP on 0.0.0.0 port 8000 ...

Web サーバーは機能しており、アクセスhttp://test.dev:8000/test.py(おかげで/etc/hosts) は機能していますが、ファイル ( print('Hello world!');) の内容は解釈せずに表示されます。

サーバー/インタープリターを適切にセットアップする方法は?

4

2 に答える 2

2

If you are just starting out with python I would recommend you start with scripts that can be run from the console using python interpreter. (eg: python run1.py)

Once you have mastered the basics, you can move onto web programming. (I am guessing that you want to try web programming since you mention a web server.) In this case, you have multiple options (all of which work with Apache):

于 2013-06-08T12:05:36.807 に答える