2
我的Python 2.7.9默認情況下,我的系統上: -我應該將我的默認Python版本更改爲最新的Python版本嗎?
[email protected]:~$ python
Python 2.7.9 (default, Mar 1 2015, 12:57:24)
[GCC 4.9.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
而且我已經安裝了最新版本的Python 3.5。
[email protected]:~$ python3.5
Python 3.5.0+ (default, Oct 11 2015, 09:05:38)
[GCC 5.2.1 20151003] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
但每當我想編譯終端Python程序,然後我需要寫python3.5 file_name.py
,所以我想改變我的默認的Python版本。
但我已經安裝了基於python 2.7.9的插件和程序,所以我懷疑如果我將python 3.5設置爲默認值,那麼可能會導致所有那些使用以前版本的python安裝的插件。
如果可能請嘗試告訴我應該更改我的默認Python嗎?
在我們回答你的問題之前:你知道這兩個版本之間的差別嗎? –
@KevinGuan yes ...我知道 –
所以如果你真的想這樣做,那麼如果他們編寫像*/python這樣的* shebang *,許多程序將不起作用。 –