如何将 Python 添加到 WAMP 或仅添加到 Windows XP 以制作 Openlayers 构建配置文件?
我想使用 Python 运行 Openlayers.js 的配置文件构建脚本。 这是 Openlayers 配置文件生成器的文档页面。 我不知道从哪里开始。
I would like to use Python to run a profile building script for Openlayers.js. Here is the documentation page for the Openlayers profile builder. I wouldn't know where to begin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该从安装 Python 开始。可以在这里下载
,然后将Python安装目录的位置添加到环境变量中的PATH变量中,以便python关键字可以在命令提示符下全局访问。
之后,您应该能够按照您在问题中指定的 OpenLayers 教程中的说明进行操作。
You should start with installing Python. It can be downloaded here
Then add location of your Python installation directory to PATH variable in Environment Variable so that python keyword can be globally accessed in command prompt.
After that you should be able to follow instructions from OpenLayers tutorial that you specified in your question.