Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何在linux中使用find命令知道python模块的位置我对python和linux都很陌生。并且不知道如何找到特定的模块或文件
更简单的方法是从 Python 导入它并从那里检查路径。
例如:
python >>> import statsd >>> print statsd.__file__ /usr/local/lib/python2.7/dist-packages/statsd/__init__.pyc
它更快:
locate module
或者:
locate module.py
使用查找:
find /usr -name module.py