私は、実稼働環境でPython 2.5インタープリターによって実行されるレガシーPythonコードを時々作業する必要があります。開発環境を実稼働環境と同じようにセットアップしたいのでpython2.5
、パッケージファミリをインストールする必要があります。
もちろん、ソースからインストールすることもできますが、それを行う方法がまったくない場合を除き、パッケージを使用することを本当に好みます。
ただし、11.04に同梱されているaptソースには、2.5パッケージは含まれていません。Nattyでスムーズに動作する可能性が高いPython 2.5パッケージはどこにありますか?
更新:動作します!apt-get
出力をより詳しく読む必要がありました。
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
Python 2.5をインストールするために私がしたことは次のとおりです。
: josh@josh; sudo add-apt-repository ppa:fkrull/deadsnakes
: josh@josh; sudo apt-get update
: josh@josh; sudo apt-get install python2.5
[...]
The following packages have unmet dependencies:
python-minimal : Breaks: python2.5-minimal (< 2.5.5-7) but 2.5.4-1ubuntu6.1 is to be installed
python2.5 : Depends: python2.5-minimal (= 2.5.5-8~ppa2~natty3) but 2.5.4-1ubuntu6.1 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
: josh@josh; sudo apt-get -f install
[...]
The following extra packages will be installed:
python2.5-minimal
Recommended packages:
python2.5
The following packages will be upgraded:
python2.5-minimal
[...]
Do you want to continue [Y/n]?
[...]
Setting up python2.5-minimal (2.5.5-8~ppa2~natty3) ...
: josh@josh; sudo apt-get install python2.5
The following NEW packages will be installed:
python2.5
[...]