web-dev-qa-db-ja.com

python2.7:ファイルを開くことができません '/usr/lib/python2.7/py_compile.py'

Apt-getで多くのエラーが発生しています。パッケージを手動でインストールしようとしましたが、すべてがスタックしているようです。

mio@vm:~$ Sudo apt-get install --reinstall python2.7-minimal
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reinstallation of python2.7-minimal is not possible, it cannot be downloaded.
The following packages were automatically installed and are no longer required:
  aspell-en libkdc2-heimdal libroken18-heimdal aspell libhdb9-heimdal libpython2.7 libtdb1 libasn1-8-heimdal libgssapi3-heimdal tdb-tools libwind0-heimdal libenchant1c2a libtevent0 libhcrypto4-heimdal
  libhx509-5-heimdal libheimbase1-heimdal libhunspell-1.3-0 libldb1 libheimntlm0-heimdal libaspell15 libkrb5-26-heimdal
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
4 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? Y
Setting up python2.7-minimal (2.7.5-8) ...
python2.7: can't open file '/usr/lib/python2.7/py_compile.py': [Errno 2] No such file or directory
dpkg: error processing python2.7-minimal (--configure):
 subprocess installed post-installation script returned error exit status 2
Setting up mysql-server-5.5 (5.5.33+dfsg-1) ...
configured to not write apport reports
[ ok                                  [....] Stopping MySQL database server: mysqld.
Usage: /etc/init.d/mongod {start|stop|force-stop|restart|force-reload|status}
insserv: warning: script 'mongodb' missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `mongodb'
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `mongodb'
[FAIL] Starting MySQL database server: mysqld . . . . . . . . . . . . . . failed!
invoke-rc.d: initscript mysql, action "start" failed.
dpkg: error processing mysql-server-5.5 (--configure):
 subprocess installed post-installation script returned error exit status 1
configured to not write apport reports
                                      Setting up mongodb-10gen (2.4.8) ...
[FAIL] Starting database: mongod failed!
invoke-rc.d: initscript mongodb, action "start" failed.
dpkg: error processing mongodb-10gen (--configure):
 subprocess installed post-installation script returned error exit status 1
configured to not write apport reports
                                      dpkg: dependency problems prevent configuration of mysql-server:
 mysql-server depends on mysql-server-5.5; however:
  Package mysql-server-5.5 is not configured yet.

dpkg: error processing mysql-server (--configure):
 dependency problems - leaving unconfigured
configured to not write apport reports
                                      Errors were encountered while processing:
 python2.7-minimal
 mysql-server-5.5
 mongodb-10gen
 mysql-server
E: Sub-process /usr/bin/dpkg returned an error code (1)

Python2.7の場合-最小限試しました

apt-get install --reinstallpython2.7-minimal

成功せずに。のようなすべてのコマンド

apt-get clean apt-get -f install

同じものを返します。

Pythonだけでなく、他のパッケージについても、どんな助けでも本当にありがたいです。

3
Mio

私はここで見つけたヘルプをほぼ見つけて問題を抱えています http://ubuntuforums.org/showthread.php?t=1763604&page=

単にdpkg -P --force depends <packages who fail>

この引数に関する詳細情報: http://tipstricks.itmatrix.eu/?p=755

そして、適性でそれをインストールした後Sudo aptitude install mysql-server-5.1

最もクリーンな方法ではありませんが、エラーはもうありません!

0
Mio

Ubuntu 16.04-> 18.04のアップグレード後、pyhon3.7ライブラリが見つからないという問題が発生し、apt/dpkg全体がブロックされました。幸いにも行方不明が見つかりました/usr/lib/python3.7/py_compile.py1レベル深い/usr/local/lib/python3.7。私のために働いた解決策は、バックアップ(名前の変更)全体でした/usr/lib/python3.7そしてシンボリックリンクに置き換えます。

Nastavuje se balík python3-tk:AMD64 (3.6.5-3) …
(null): can't open file '/usr/lib/python3.7/py_compile.py': [Errno 2] No such file or directory
dpkg: chyba při zpracovávání balíku python3-tk:AMD64 (--configure):
 installed python3-tk:AMD64 package post-installation script subprocess returned error exit status 2
Nastavuje se balík python3-lib2to3 (3.6.5-3) …
(null): can't open file '/usr/lib/python3.7/py_compile.py': [Errno 2] No such file or directory
dpkg: chyba při zpracovávání balíku python3-lib2to3 (--configure):
 installed python3-lib2to3 package post-installation script subprocess returned error exit status 2
...
1
czechDude