2014-07-25 46 views
0

我試圖首次手動安裝Trac。我不想使用像Bitmani這樣的一鍵安裝程序,我想要了解如何手動安裝Trac,因此我會仔細按照說明進行操作。我現在將它安裝在Windows本地主機中,然後將其安裝到Linux環境中。在安裝Trac之前驗證線程安全MySQLdb(Python)

當我仔細按照指示,我需要安裝Python + MySQLDb,我這樣說的:

thread-safety is important (...) verify that it is thread-safe by calling MySQLdb.thread_safe() from a standalone Python script (i.e., not under Apache). If the stand-alone test reports that MySQLdb is indeed thread-safe (...)

我剛剛安裝MySQLDb 1.2.4,我想驗證這一點。我谷歌搜索,但我還沒有找到關於這個例子,我不知道Python!有人可以幫我確認我是否有線程安全的安裝嗎?

謝謝!!!

回答

2

運行此命令。如果在輸出中獲得1,則安裝是線程安全的。

python -c "import MySQLdb ; print MySQLdb.thread_safe()" 
+0

我試過了,但是我有這個錯誤:'SyntaxError:EOL while scanning string literal'。謝謝你的幫助! – Metafaniel

+0

噢,我剛剛用''替換'''''''',所以我現在已經驗證了。謝謝!!! – Metafaniel

+0

@Metafaniel哈哈,我只是想說,你'太快了:)很高興爲你效勞! – johntellsall