djangoにアクセスできなかった時のメモ。 dockerでdjango用コンテナを作成したのに、pcからアクセスできなかった python manage.py runserver だけだとpcのブラウザからでアクセスできない django django
djangoにアクセスできなかった時のメモ。
dockerでdjango用コンテナを作成したのに、pcからアクセスできなかった
python manage.py runserver
だけだとpcのブラウザからでアクセスできない。
起動はするし同じコンテナ内からだと wget 127.0.0.1 はできるのだが。
pcから http://localhost:ポート番号/ だとアクセスできな
pythonでコマンドを実行し結果を返値で取得 python python
pythonでコマンドを実行し結果を返値で取得
import subprocess
r=subprocess.run("ls", capture_output=True, text=True).stdout
# Python 3.7以降限定 capture_output=True , Python 3.6以前は代わりにstdout=subprocess.PIPE と stderr
bash sh で実行すると Syntax error: "(" unexpected のエラーがでる bash bash
bash sh で実行すると Syntax error: "(" unexpected のエラーがでる
・エラーになった内奥
# sh hoge1.sh
Syntax error: "(" unexpected
・エラーだったのが箇所
function log () {
・解決策
chmod +x hoge1.sh
・次からはこちらで実行
./hoge1.sh
postgresql インストール時にエラー発生 Failed to fetch debian postgresql postgresql .deb 404 Not Found [IP: postgresql postgresql
Failed to fetch debian postgresql postgresql .deb 404 Not Found [IP:
■実行コマンド
RUN apt-get -y install postgresql
・・・省略
#0 486.0 Fetched 45.7 MB in 8min 4s (94.5 kB/s)
#0 486.0 E: Failed to fet
Pythonでは文字列や数値の右にゼロを詰める(ゼロパディング)する場合、zfill関数を使うと便利 python python
Pythonでは文字列や数値の右にゼロを詰める(ゼロパディング)する場合、zfill関数を使うと便利
例)
s = "c"
print( s.zfill( 2 ))
print( s.zfill( 8 ))
#0c
#0000000c