0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

chromebookのlinux上のxamppでpythonを動かす方法

Posted at

1.はじめに

chromebook上にxamppをインストールして遊んでいたが、pythonを動かしたくなった。

2.方法

/opt/lampp/etc/httpd.conf
AddHandler cgi-script .py
<Directory /usr/local/apache2/htdocs/python>
  Options +ExecCGI
</Directory>

を一番下に追記する。

/opt/lampp/htdocs/python/test.py
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
print("Content-Type: text/html\n")
print("<h1>Hello World</h1>")

を配置する。

sudo chmod 755 /opt/lampp/htdocs/python/test.py

を実行する。

xamppをrestartする。

http://localhost/python/test.py にアクセスすると確認できる。
どうかな。

3.参考文献

「Python」CGI プログラムとして動かしてみる
https://a4dosanddos.hatenablog.com/entry/2013/08/08/011355

XAMPP - ArchWiki
https://wiki.archlinux.jp/index.php/XAMPP

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?