no output when using kivy in python in notepad++
-
python works fine, i get text output in the command line, and in idle i get the windowed output i expect, but not when i use notepad++ which i really enjoy.
-
How do you start your kivy/python program?
-
I know I installed python correctly, i put it in the path and everything, its been a while since i installed notepad. to install kivy i went into the windows command prompt and typed “python -m pip install kivy”. i know this worked because i can fully use kivy using the idle interface. just not in the Notepad++ interface.
-
sorry but you did not answer my question how you start your program.
Using run menu and if how? Using NppExec, if so what did you specify to run the program? -
sorry, yes it was nppexec
-
if so what did you specify to run the program?
-
im not sure what you mean what did i specify (sorry, pressed submit before i was done and had to wait a minute)
-
you need to specify which python interpreter you want to use, with which parameters to execute the program
-
im using python 3.7.1. its been a while since i set notepad up, where would i find the parameters
-
you will see it if you press F6 - as long as you have not reassigned the standard NppExec shortcut
-
i have not reassigned anything except F7 is now set to run python
this is what im getting "C:\Users\(MYNAME)\AppData\Local\Programs\Python\Python37-32\python.exe “$(FILE_NAME)” -
this doesn’t work for gui frameworks like kivy.
Use something likecmd /C cd $(CURRENT_DIRECTORY) && "C:\Users\(MYNAME)\AppData\Local\Programs\Python\Python37-32\python.exe" -t -B -u "$(FILE_NAME)"
-
just confirming, am i supposed to copy what you sent me and replace what i sent you for it
-
normally yes, as long as you sent me the whole configured call setup.
-
i did, i check it now
-
it worked thank you so much