Flask installation
-
I want to configure flask and use it with notepad++
Issues are;
- Command prompt doesn’t process my “python -V” entry
- Other methods are outdated
Is there anything i can try? Please help
I have already setup python and is configured well for notepad. I need flask too
-
Command prompt doesn’t process my “python -V” entry
How did you do that exactly? Via Run Menu from Npp?
Did you usecmd /k python -V
?Other methods are outdated
Means what? Which methods you are talking about?
I need flask too
pip install ?
-
I used cmd /k python -V
The other method i tried was to run pyvenv file located inside my installed python file -
Perhaps you could guide me on installing flask via pip install
-
-
You need to be more descriptive.
If you used a command and it doesn’t work you need to provide the error message
you got in order for one to find out what the issue could be. -
How exactly did you setup python and how do you want it to be used?
Perhaps you could guide me on installing flask via pip install
pip install flask
but only if you want it to be installed for the main python installation
if you want it to have in an env you need to activate it first and then run the
command within this virtual environment. -