Python Forum
Do you know what is that, in my terminal setings?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Do you know what is that, in my terminal setings?
#1
I finally manage to install the visual code IDE and when I give it a simple code :
import tkinter as tk
import time
tk = tk.Tk()

self.geometry("350x500")
self.resizable(height = False, width = False)
self.title('Calculator')



class Sscalc():
    file = ("Main.png")
    image = file
    time = 5
    

def frm():
    Frame(self,image,time)

def lbl():
    Label(self,image,time)

self.after(5000)
self.destroy


if __name__ == "__main__":
    
    self.mainloop
it gives me this "warning": 'The terminal process failed to launch: Path to shell executable "C:\Python 385\Scripts\__pycache__" is not a file of a symlink.'
When I start to debug the program it falls into an infinite loop.
What peculiarity is that?
Huh
P.S.
I noticed that in the "warning" refers to the python 385 version, while I`m running the 374 one.
Reply


Messages In This Thread
Do you know what is that, in my terminal setings? - by All_ex_Under - Aug-19-2020, 08:11 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020