5

ここにscikits.nufftパッケージをインストールしようとしてい ます.zipファイルをダウンロードし、解凍してディレクトリにcdします。setup.py ファイルが含まれているので、実行します

python setup.py install

しかし、私のPYTHONPATHに関連する次のエラーが表示されます

sudo python setup.py install
sudo: unable to resolve host Lenovo
/usr/local/lib/python2.7/dist-packages/distribute-0.6.31-py2.7.egg/setuptools/command/install_scripts.py:3: UserWarning: Module dap was already imported from None, but /usr/lib/python2.7/dist-packages is being added to sys.path
  from pkg_resources import Distribution, PathMetadata, ensure_directory
running install
Checking .pth file support in /usr/local/lib/python2.7/site-packages/
/usr/bin/python -E -c pass
TEST FAILED: /usr/local/lib/python2.7/site-packages/ does NOT support .pth files
error: bad install directory or PYTHONPATH

You are attempting to install a package to a directory that is not
on PYTHONPATH and which Python does not read ".pth" files from.  The
installation directory you specified (via --install-dir, --prefix, or
the distutils default setting) was:

    /usr/local/lib/python2.7/site-packages/

and your PYTHONPATH environment variable currently contains:

    ''

Here are some of your options for correcting the problem:

* You can choose a different installation directory, i.e., one that is
  on PYTHONPATH or supports .pth files

* You can add the installation directory to the PYTHONPATH environment
  variable.  (It must then also be on PYTHONPATH whenever you run
  Python and want to use the package(s) you are installing.)

* You can set up the installation directory to support ".pth" files by
  using one of the approaches described here:

  http://packages.python.org/distribute/easy_install.html#custom-installation-locations

Please make the appropriate changes for your system and try again.

パスが空だと思っているようですが、パスを確認すると、

echo $PYTHONPATH
/usr/local/lib/python2.7/site-packages:/home/david/PYTHON

パスが空であると考える理由を知っている人はいますか?? または、ここで何が間違っているかについて他の考えがあります。ありがとう、デイブ

4

2 に答える 2

7

上記のAyaのコメントの後、ここで同様の解決された問題を見つけ、追加して実行しました

Defaults    env_keep += "PYTHONPATH"

sudoers ファイルに。タ、デイブ

于 2013-05-23T18:51:39.600 に答える