Flask installation and setup in Visual Studio Code | Flask in VS Code Tutorial Part #1

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ส.ค. 2024
  • In this tutorial, we will learn how to install flask and set up a development environment for Flask in Visual Studio Code.
    1) Flask is a lightweight python framework for web applications with basic support for URL routing and page rendering.
    2) Also known as 'micro framework' because it does not directly provide the following features like validation, database abstraction, authentication, and so on. We can use these features with help of a special python package which is called Flask Extension.
    3) Flask does not provide a template engine, but installing Flask includes the 'Jinja templating engine by default.
    Prerequisites
    =============
    1) Install the Python extension (by Microsoft) in Visual Studio Code.
    2) Install a version of Python 3
    3) On Windows, make sure the location of your Python interpreter is included in your PATH environment variable.
    Create a project environment for the Flask
    ===========================================
    Important Note :
    ================ we need to create a virtual environment in which we will install Flask, Using a virtual environment avoids installing Flask into a global Python environment and gives you exact control over the libraries used in an application.
    let's do it together,
    Step 1: Create a folder and open it in visual studio code.
    Step 2: open a new terminal in VS code and run this command to create a virtual environment: py -3 -m venv .venv
    Step 3: now run following command to activate virtual environment : .venv\scripts\activate
    Step 4: now go to --view -- command palette -- type Select Python Interpreter, from the list --select the virtual environment in your project folder that starts with ./.venv or .\.venv:
    Step 5: Open a new terminal that will activate the newly created virtual environment, then
    Step 6: run the following command in the terminal:
    python -m pip install --upgrade pip
    Step 7: Install Flask in the virtual environment-run following command -
    python -m pip install flask
    Now we have a self-contained environment ready for writing Flask code.
    ** To know you are working in a created virtual environment just check the environment is activated when the command prompt shows (.venv) at the beginning.
    *Please watch the Flask Tutorial part - 2 to create and run a sample app in visual studio code.
    • Creating and running d...
    #FlaskSetupVSCode #coolithelp #flaskTutorialBeginners

ความคิดเห็น • 14

  • @rroc001t1200b
    @rroc001t1200b 11 หลายเดือนก่อน +2

    wow, after much distress and frustration trying to get my flask to work. I finally found exactly what I was looking for. my flask app works!!!. Thank you for this great tutorial for both Part 1 and Part 2

    • @CoolITHelp
      @CoolITHelp  11 หลายเดือนก่อน

      Glad I could help!

  • @wendymcdonald7351
    @wendymcdonald7351 ปีที่แล้ว +1

    Thank you for this, new to using VS and flask. This helped so much!

  • @Rishu_Dakshin
    @Rishu_Dakshin 10 หลายเดือนก่อน

    Thanks a lot for the video. This is what a beginer like me looking for. After 1 complete day of checking other videos, i finally found it and made it, Please made videos on - how to build Flast restful API please

  • @beerauppamnaveenteja720
    @beerauppamnaveenteja720 10 หลายเดือนก่อน +2

    I am nodeJS based developer. Recently i thought to try flask too, but while doing step3, it showing error like bash: .venvscriptsactivate: command not found. Can you please help me regarding this?

    • @roshnikumari6614
      @roshnikumari6614 5 หลายเดือนก่อน

      same doubt ! is your problem resolved.. if yes please share

  • @naman_sharma2511
    @naman_sharma2511 ปีที่แล้ว +1

    Very helpful

  • @Tranhaidang3301
    @Tranhaidang3301 ปีที่แล้ว +2

    it good but i must change setting scripts to enable on my system

  • @gutsjoestar7450
    @gutsjoestar7450 ปีที่แล้ว +1

    if it isnt on my path, how do i add it to it 4:10

  • @anandratna3828
    @anandratna3828 ปีที่แล้ว

    Th🎉anks

  • @sriya4090
    @sriya4090 ปีที่แล้ว

    Thanks

  • @SirMika9
    @SirMika9 ปีที่แล้ว +1

    It don't work. Step 3 it tell me script execution is deactivated in the system