Browsed by
Tag: PyCharm

如何在 PyCharm IDE 中 debug Flask App

如何在 PyCharm IDE 中 debug Flask App

由於 Flask 官方網頁中執行 app 的方法是採用 flask command line

 
$ export FLASK_APP=hello 
$ flask run 

PyCharm Community 是直接調用 Python 執行 script,若要PyCharm IDE 中調用 flask command line 就必須要做一些 work around 設定才能執行。Flask 官方的說明 [PyCharm Integration]在Mac上可以用 PyCharm 執行Flask App,

另外要利用 PyCharm 的 debug 功能要再做一些額外的設定。可以參考 Miguel Grinberg 的教學說明 [Setting Up a Flask Application in PyCharm]。

但要在 Window 10 中的 PyCharm Community Debug 還要使用一些小 Trick。可以參考 StackOverflow 這個討論串 [How to run Flask CLI from within PyCharm under Windows]。

其實,最簡單的方法是你購買 PyCharm Professional, 那可以直接建立一個 Flask Server Configuration [Run/Debug Configuration: Flask Server]

在Windows系統 Python 3.6環境無痛安裝 face-recognition

在Windows系統 Python 3.6環境無痛安裝 face-recognition

最近開始了一個人臉辨識的專案,上網搜尋後 face_recognition 應該是最多人採用的入門方案。

但你若是依照 github repo 上的說明 想在 MS Windows 作業系統安裝 dlib 以及 opencv 套件,你大概會跟我一樣踩到地雷,好幾天搞不定。

後來再 Google 一下網路其它人的分享[1, 2],發現其實在 Python 3.6 的環境根本是可以無痛安裝!

Read More Read More

[閱讀週記] 20180730-0803

[閱讀週記] 20180730-0803

記錄過去一週的閱讀中覺得值得分享的資訊…

[Python]

Read More Read More