Jump to content

Running python in Linux with tk root?


DaRedHead

Recommended Posts

So I just started watching the videos from Stanford, Google, MIT and a few on youtube. One of them contained the code for using tkinter function to create an application window and I tried to put the same type of thing together can anyone tell me what I am doing wrong cause nothing is happeing for me. I am running linux mint:

# - So this is what it feels like
# - To be alive
#!/user/bin/python
import sys

author = "Brian T. Flores"
version = "0.1"
sessionID = 0

#Get Interface

     from Tkinter import *

#initialize interface 

     root = Tk()

#modify root window info
 
     root.title("Unknown Limits - Massive Multiplayer RPG")
     root.geometry("200x100")

#initialize root window

     root.mainloop()



#if session is > 0:

   #Get Player Info

          UserName = "Brian Flores"
          Password = "enterprise"
          rank = 32

   #planetOverview

          planetName = "Earth"
          plasmaOnhand = 1000000000
          titainiumOnhand = 340000
          crystalOnhand = 55000000
          magneticEnergyOnhand = 350000 
         
       
          ecosystem = "No" 

# yes or no depending on wars or natural disasters that could have damaged or destroyed your ecosystem if there is no ecosystem the atmosphere must be cleaned up and another must be transplanted from another world.

          ecosystemDamage = 10000;  
          
#Damage can result from experiments, wars, natural disasters. At 10,000 damage the ecosystem goes extinct. You can repair this damage my researching technologies and building machines to do such repair 
  
 #         else:
            
           #   print "You are not logged in!";

   
        # raw_input()

Well for some reason it's not working. All I am doing here is setting some vars and using the root.tk function.

If anyone has any Ideas or tips to get this basic script working let me know.

 

Thank you,

DaRedHead

Link to comment
https://forums.phpfreaks.com/topic/292631-running-python-in-linux-with-tk-root/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.