Reputation: 263
I recently started following this tutorial on how to make a roguelike with Python. I have the first part of the code written(posted below) that draws and lets you control the player, but I'm not sure how exactly to run this and test it out. Also, I have Python installed, and I'm using Notepad++. Can someone help to figure out how to run my .py scripts?
Upvotes: 2
Views: 412
Reputation: 45
As the first comment says, type python myscript.py
into the commandline.
It may be worth familiarising yourself with command line before trying your hand at programming; it's not particularly hard, and learning it all at once will be easier than learning the bits and pieces you need as they come up.
Upvotes: 1
Reputation: 63
Download the plugin PyNPP it will help with development in Notepad ++ haven't played with it too much though. Has options to customize your run options. Has a shortcut as well to launch quickly.
Hope this helps.
Upvotes: 3