pip没有安装我的data_files。但easy_install确实如此

时间:2011-12-12 08:18:00

标签: python pip easy-install setup.py

这将是一个简短的问题。

来源位于:https://github.com/exhuma/grc

标题解释了我的问题;)

我注册并将包上传到pypi。现在如果我运行easy_install grc,它会按预期工作。但是如果我运行pip install grc,它会正确安装,但不会安装data_files。我不明白为什么会这样。有什么想法吗?

1 个答案:

答案 0 :(得分:5)

可能文件未安装在您期望的路径中。在Ubuntu 11.10中,我在/usr/local/configs下看到它们,因为它可以在pip uninstall输出中看到:

$ sudo pip uninstall grc
Uninstalling grc:
  /usr/local/bin/grc
  /usr/local/configs/apache_access.yml
  /usr/local/configs/aptitude.yml
  /usr/local/configs/pysetup.yml
  /usr/local/lib/python2.7/dist-packages/grc
  /usr/local/lib/python2.7/dist-packages/grc-1.0b3.egg-info
Proceed (y/n)?

在您的系统中,我猜您也可以检查pip uninstall的输出以确保。