我使用windows命令提示符安装了tweepy,如下所示。
G:\Python27\Scripts>pip install tweepy
Downloading/unpacking tweepy
Downloading tweepy-2.3.0.tar.gz
Running setup.py (path:c:\docume~1\bishan\locals~1\temp\pip_build_Bishan\tweep
y\setup.py) egg_info for package tweepy
Installing collected packages: tweepy
Running setup.py install for tweepy
Successfully installed tweepy
Cleaning up...
G:\Python27\Scripts>现在,我需要在我的项目中使用tweepy。但我无法在我的电脑上找到tweepy的安装位置。
如何找到tweepy安装位置并将其导入eclipse项目?
发布于 2014-10-02 07:42:32
你在用PyDev吗?如果是,并且配置正确,那么您就不必关心安装库的物理位置。有关如何配置this question以自动解析已安装的python包,请参见PyDev。
但是,如果您真的想知道安装库的物理位置,请查看Python安装目录中的Lib/site-packages目录。应该在那里的某个地方。
https://stackoverflow.com/questions/26155941
复制相似问题