0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

pythonでローカルサーバ化

Last updated at Posted at 2020-05-11

#概要

  1. windows編
  2. Mac編

##Windows

###pythonのダウンロード
ここからダウンロードする。
64bitなので以下のファイルをダウウンロード。
「Windows x86-64 executable installer」

###pythonのインストール
ダウンロードしたpython-3.8.2-amd64.exeをクリック。
image.png

image.png

image.png

image.png
MAX_PATH の制限を除去するを認めるようにメッセージが表記される。キャプチャを紛失しました。

###pythonの確認

>py -3 -V
Python 3.8.2

###ローカルサーバ配置

>py -3 -m http.server
Serving HTTP on :: port 8000 (http://[::]:8000/) ...

http://127.0.0.1:8000」を叩くとディレクトリが表示されました。

###(ちなみに)pythonのアンインストール
インストーラからもアンインストールできます。

python-3.8.2-amd64.exeをクリック。

アンインストール完了です。
image.png

image.png

##Mac

###pythonのインストール
下記の記事でインストール方法は記しています。
mac vscodeでpythonをインストール

###ローカルサーバ配置

$ python3 -m http.server
Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ...

http://127.0.0.1:8000」を叩くとディレクトリが表示されました。

##参考

ブラウザからローカルファイルへのアクセス方法
Python 3.7.3のダウンロードとインストール
Ajaxを使ってPythonとJavascriptでやり取りを行う方法

0
1
0

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?