I need a beginners guide to setting up windows for python development

前端 未结 10 964
天涯浪人
天涯浪人 2020-12-31 14:57

I currently work with .NET exclusively and would like to have a go at python. To this end I need to set up a python development environment. I guide to this would be handy.

10条回答
  •  北海茫月
    2020-12-31 15:19

    Environment?

    Here is the simplest solution:

    • Install Active Python 2.6. Its the Python itself, but comes with some extra handy useful stuff, like DiveintoPython chm.

    • Use Komodo Edit 5. It is among the good free editor you can use for Python.

    • Use IDLE. Its the best simplest short snippet editor, with syntax highlighting and auto complete unmatched by most other IDEs. It comes bundled with python.

    • Use Ipython. Its a shell that does syntax highlighting and auto complete, bash functions, pretty print, logging, history and many such things.

    • Install easy_install and/or pip for installing various 3rd party apps easily.

    Coming from Visual Studio and .Net it will sound a lot different, but its an entirely different world.

    For the framework, django works the best. Walk thro the tutorial and you will be impressed enough. The documentation rocks. The community, you have to see for yourself, to know how wonderful it is!!

提交回复
热议问题