我必須刪除一個名爲「django」(流行的)的python模塊,因爲我安裝了錯誤的版本(1.3-beta在py-2.6中)。卸載ubuntu中的python模塊
如何卸載此模塊?
請解釋一下,因爲我只在Windows中使用python,從來沒有在Ubuntu中使用python。
我必須刪除一個名爲「django」(流行的)的python模塊,因爲我安裝了錯誤的版本(1.3-beta在py-2.6中)。卸載ubuntu中的python模塊
如何卸載此模塊?
請解釋一下,因爲我只在Windows中使用python,從來沒有在Ubuntu中使用python。
去蟒蛇外殼
>> import django
django.__path__
複製的外殼
sudo rm -r path
。可能還有其他依賴關係。 – 2011-05-11 05:54:41
是的,但在這種情況下,沒有。 Django是獨立的。 – 2011-05-11 16:22:35
非常喜歡這個回答+1 – vietean 2012-04-04 16:00:13
sudo aptitude install python-pip
sudo pip install django --upgrade
不,這是不推薦!它創建一個新的django,其中包含舊版本的django,內部爲 – c24b 2014-01-03 07:07:22
你是如何在第一時間安裝路徑
? – Blair 2011-05-11 05:27:22
python setup.py install – VoodooChild92 2011-05-11 05:28:13
我按照django站點上的說明安裝它 – VoodooChild92 2011-05-11 05:28:45