1

訪問 2.6.2 ( https://wci.llnl.gov/codes/visit/home.html ) をインストールしました。実行しようとすると、次のエラーが表示されます。

"error while loading shared libraries: libpython2.6.so.1.0: cannot open shared object file: No such file or directory"

私はpython 2.7.3を稼働させています。

4

3 に答える 3

1

ldconfigpython2.6 がインストールされている場合は、 (*nix を使用していると仮定して)セットアップする必要があるようです。インストール/etc/ldconfig先のディレクトリをリストする行を追加して、次を実行します。libpython2.6.so.1.0ldconfig

# We can try to find libpython2.6.so...
find / -name libpython2.6*

# Suppose it's in /usr/local/lib, add that line to /etc/ldconfig
echo '/usr/local/lib' | sudo tee -a /etc/ldconfig

# Update ldconfig, and you should be golden!
sudo ldconfig
于 2013-03-28T21:20:17.110 に答える