How to Create Requirements.txt File with One Command

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 พ.ย. 2024

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

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

    📗Enroll in Object Tracking Course:nicolai-nielsen-s-school.teachable.com/p/yolov8-object-tracking-course
    📕Enroll in YOLOv7 Course:nicolai-nielsen-s-school.teachable.com/p/yolov7-custom-object-detection-with-deployment
    📘Enroll in OpenCV GPU Course: nicolai-nielsen-s-school.teachable.com/p/opencv-gpu-course

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

    Thank you, this was what was confusing me but your video has been very helpful!!!

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

      Awesome man! Glad I could help

  • @jean-tazeb9759
    @jean-tazeb9759 11 หลายเดือนก่อน +1

    Insane, exactly what I was looking for thank you

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

      Glad I could help

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

    You just saved me a couple of hours! Cheers mate.

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

      Awesome man! Glad to hear

  • @lazaror.diazlievano4939
    @lazaror.diazlievano4939 3 หลายเดือนก่อน +1

    Amazing, this is the simplest way to create a requirements.txt file. Thank you!

    • @NicolaiAI
      @NicolaiAI  3 หลายเดือนก่อน

      Thanks for watching! My pleasure

  • @otmanemaarir
    @otmanemaarir 16 วันที่ผ่านมา +1

    thank you, has been very helpful

    • @NicolaiAI
      @NicolaiAI  16 วันที่ผ่านมา

      Awesome! Happy to help

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

    Great video! My only doubt is - does it extract required modules for all the python files in the mentioned directory?

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

    Thank you for this video!
    Did you notice how your voice was highly intonnated at intervals. It sounded cute......looool!

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

    It helped a lot,thanks!

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

      Awesome man! Thanks for watching

  • @adityakhopade2137
    @adityakhopade2137 7 หลายเดือนก่อน +1

    Please make a video on how to create standalone openCv python application
    Bcuz it's working when i tried

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

    I just did pip install pipreqs, and it installed some packages but also uninstalled a lot more. Why is it uninstalling packages?

  • @bennguyen1313
    @bennguyen1313 3 หลายเดือนก่อน +1

    Is pipreqs smart enough to analyze my python script and determine that some imports are not actually used, and therefore won't add it to the requirements txt? I'd like to find a way to give it a script and have it report the versions the user will need.. ONLY for the packages that are used somewhere in the code!

  • @ebadulislam123
    @ebadulislam123 6 หลายเดือนก่อน +2

    Concise and understandable ❤

    • @NicolaiAI
      @NicolaiAI  6 หลายเดือนก่อน

      Thanks a ton man!

  • @rahul-b8r6t
    @rahul-b8r6t 8 หลายเดือนก่อน +1

    do we have to do this at the start of any new project or we can do it in the middle of the django app development

    • @NicolaiAI
      @NicolaiAI  8 หลายเดือนก่อน

      You can do it whenever

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

    Here I see 2 commands and it is not work
    this is solution which I find i one command
    pip3 freeze > requirements.txt

  • @vivektyagi6885
    @vivektyagi6885 7 หลายเดือนก่อน

    Thanks Nicolai.

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

    I did the same as the tutorial, but in my reqirements I have like 60 different libraries, even though I am using just Flask
    can I get rid of it automaticaly?

    • @TheChaos2711
      @TheChaos2711 8 หลายเดือนก่อน

      hi,
      did you get it?

    • @frantisekzapotocky4743
      @frantisekzapotocky4743 8 หลายเดือนก่อน

      @@TheChaos2711 to be honest, I don't remember what I was doing 2 months ago, but I will try to find my solution, if I maneged to solve it

  • @timucintimucin4146
    @timucintimucin4146 2 หลายเดือนก่อน

    "pip freeze > requirements.txt" will also do the same job

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

      No it doesn't. Pip freeze vomits a very verbose list of packages with hard version requirements.
      This makes requirement upgarde a terrible painful job in the future.