So let's get to it:
In this part we shall do the set up.
- You'll need a Python interpreter(if you don't have one from https://www.python.org/downloads/ or alternatively(I recommend) http://dl.algorete.org/loopy/ALGORETE-Loopy-Windows64_full.exe or http://dl.algorete.org/loopy/ALGORETE-Loopy_Darwin64_full.sh or http://dl.algorete.org/loopy/ALGORETE-Loopy_Linux64_full.sh
- Once you have that, typing "python" (without the quotes) on powershell-for Windows users should return the python version and invoke python IDLE on powershell (cool huh?).
- It's a great thing running python from IDLE but it gives you a controlled environment and you'll get thrown off when you encounter heavy stuff such as scipy, numpy, Kivy etc, so i recommend an IDE the best I've used so far- and what I'll be using is Jetbrains Pycharms from https://www.jetbrains.com/pycharm/download/
For your first program on IDLE type the following after the >>> signs and press enter:
print ("Hello Python")

No comments:
Post a Comment