Best opensource IDE for building applications on Google App Engine?(在 Google App Engine 上构建应用程序的最佳开源 IDE?)
问题描述
希望涉足 GAE 和 python,我想知道有哪些最好的工具 - 谢谢!
Looking to dabble with GAE and python, and I'd like to know what are some of the best tools for this - thanks!
推荐答案
我会花时间学习 emacs 之类的东西.学习曲线有点高,但是一旦习惯了,就可以从任何终端进行开发.它对 python 和许多其他库提供了出色的支持.
I would spend the time and learn something like emacs. The learning curve is a bit higher, but once you get used to it, you can develop from any terminal. It has fantastic support for python and many other libraries.
您必须记住,Python 是一种动态类型的语言,因此传统的 IDE 并不是真正的答案,因为它们主要是为静态类型的语言设计的.基本上你想要一些具有语法高亮、编译以及一些快捷方式和宏来让你的生活更轻松的东西...... emacs 拥有所有这些:)
You have to remember that Python is a dynamically typed language so the traditional IDE is not really the answer since those are mostly designed for statically typed languages. Basically you want something that has syntax highlighting, compilation and maybe some shortcuts and macros to make life easier for you... emacs has all of this :)
我会谷歌Emacs Python"来开始.
I would Google "Emacs Python" to get started.
如果你真的不想使用 emacs,我会看看 PyDev.它是 Eclipse IDE 的扩展,可让您编写 python 代码.我的一些从事 Django 工作的朋友在这方面运气不错.
If you really don't want to use emacs, I would look at PyDev. It's an extension to the eclipse IDE that let's you write python code. Some of my friends that do Django work have had good luck with that one.
希望这会有所帮助.
祝你在 GAE 上好运.
Good luck with GAE.
这篇关于在 Google App Engine 上构建应用程序的最佳开源 IDE?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Google App Engine 上构建应用程序的最佳开源 IDE?
基础教程推荐
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
