在 OSX 上安装 Python 模块/脚本
我在 Mac OSX 10.5.8 中运行 Python 2.6.2。
我正在尝试为出版物生成科学图表,并正在尝试使用 python/matplotlib 来做到这一点。 Varun Hiremath 创建了一个名为plot_settings.py 的模块(链接文本,我正在尝试弄清楚如何安装模块以便我可以导入它,我不确定 easy_install 是否适用于这里,这就是我感到困惑的原因!
I am running Python 2.6.2 in Mac OSX 10.5.8.
I am trying to generate scientific graphs for a publication and am experimenting with python/matplotlib to do that. Varun Hiremath created a module called plot_settings.py (link text and I am trying to figure out how to install the module so that I can import it. I'm not sure if easy_install is applicable here, which is why I'm confused. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将该文件放在与脚本相同的文件夹中并导入它:
importplot_settings
。Put that file in the same folder as your script and import it:
import plot_settings
.