Anaconda site-packages(Anaconda 站点包)
问题描述
在 anaconda 环境中安装包后,我想对该包中的代码进行一些更改.
After installing a package in an anaconda environment, I'll like to make some changes to the code in that package.
在哪里可以找到包含已安装软件包的 site-packages 目录?我没有找到目录 /Users/username/anaconda/lib/python2.7/site-packages
Where can I find the site-packages directory containing the installed packages? I do not find a directory /Users/username/anaconda/lib/python2.7/site-packages
推荐答案
您可以导入模块并检查 module.__file__ 字符串.它包含相关源文件的路径.
You can import the module and check the module.__file__ string. It contains the path to the associated source file.
或者,您可以阅读模块文档中的 File 标记,可以使用 help(module) 或 module? 在 IPython 中.
Alternatively, you can read the File tag in the the module documentation, which can be accessed using help(module), or module? in IPython.
这篇关于Anaconda 站点包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Anaconda 站点包
基础教程推荐
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
