Anaconda Beginners Guide for Linux and Windows - Python Working Environments Tutorial

Поделиться
HTML-код
  • Опубликовано: 6 июл 2024
  • In this video, we will talk about the Anaconda toolkit and how we can use it to make our Python journey a bit more convenient.
    🐍 We will talk about working environments and how we can create them on our computer.
    🐍 We will also install different versions of Python inside these environments and combine them with a few popular packages.
    🐍 We will discuss all the must-know conda commands.
    🐍 We will install a conde editor named Jupyter Notebook.
    The goal of this tutorial is:
    a. to show the convenience of working environments.
    b. to answer why I'm using conda in most of my videos 😜
    🛑 PLEASE NOTE 🛑
    *******************************
    I didn't mention it in this tutorial - but you can still install Pygame with Python 3.5 (up to 3.5, newer versions will not work with conda!)
    You'll just need to figure out which version of Pygame works with your version of Python!
    So is Python 2.7 really a requirement? NO! I shouldn't have phrased it that way... but you might run into issues if you go for a later version! I got lots of questions about it and 2.7 seems to work great for everybody!
    So if you got the following error:
    UnsatisfiableError: The following specifications were found
    to be incompatible with the existing python installation in your environment:
    Specifications:
    - pygame - python[version='2.7.*3.5.*']
    Your python: python=3.9
    Just try combining it with an older version of Python and it should do the trick! 😉
    ⏰Time Stamps ⏰
    *******************************
    00:00 - Intro to Anaconda Toolkit
    00:23 - What is a working environment?
    01:52 - Install Anaconda on Linux Ubunbtu 20.4
    03:35 - Create conda working environments
    04:02 - conda: command not found ERROR FIX
    04:52 - conda install Pytorch
    05:15 - conda list packages
    06:00 - install Pygame
    06:56 - conda remove package
    07:25 - conda env list
    07:47 - conda update package
    08:14 - update conda
    08:49 - search for install commands
    10:18 - Jupyter Notebook
    11:35 - Install Anaconda on Windows
    14:20 - thanks for watching!
    ⭐ Anaconda Cheat Sheet ⭐
    *******************************
    docs.conda.io/projects/conda/...
    ⭐ Learn more about Jupyter Notebook (old video of mine)⭐
    • Coding Interfaces for ...
    ⭐ My Simple Video Game with Pygame Tutorial ⭐
    • Create a Simple Video ...
    ⭐ My Pytorch Databases Tutorial ⭐
    • Machine Learning Datab...
    ⭐ My Web App with Flask Tutorial ⭐
    • Simple Web App with Fl...
  • НаукаНаука

Комментарии • 329

  • @JoseAntonio-jf5lz
    @JoseAntonio-jf5lz 2 года назад +13

    Hello, great video, all your videos are very instructive. I have a question, i have a very basic knowledge of python, I tried pycharm but gives me problems so I only know to use idle and Sublime text,: Can you use theese two with different working environments in Anaconda? Thank you.

    • @PythonSimplified
      @PythonSimplified  2 года назад +25

      Hi Jose! 😃
      You can even use Notepad to create Python files! It doesn't really matter which code editor you use - as it's not affecting anything inside your working environment! 🙂
      The only reason why you use code editors is to produce ".py" or ".html" or ".js" files and then you run them from your terminal. So you edit with Sublime and you execute your them with Anaconda - these 2 are not related!
      The main benefit of IDEs like Pycharm is that you both edit your files there and both execute them from the built-in terminal in Pycharm. But it's quite a hustle to set everything up and get it to work, so if you're just beginning with Python - it's best to start with simple code editors like Sublime and switch to an IDE only at a later stage - when you are more experienced 😉
      BTW, in most of my tutorials I use a code editor called Atom to produce the files (very similar to Sublime) and I just run them from the Anaconda terminal by:
      1. activating my environment:
      conda activate my_environment
      2. installing whichever modules you're planning to use, for example PyQT5:
      conda install -c anaconda pyqt
      3. navigating to the project folder with:
      cd c:\users\mariya\path_to_my_program
      4. running the Python file inside this folder with:
      python my_file_name.py
      You can check out this video for example (it's somewhere around 03:30 minutes):
      ruclips.net/video/9iZLDnW_vwU/видео.html
      Good luck! 😃

    • @JoseAntonio-jf5lz
      @JoseAntonio-jf5lz 2 года назад

      @@PythonSimplified Thank you very very much for the detailed explanation. When I am using Python's IDLE (something similar in Sublime) I press F5 to run the module to check if it works, it opens a new window and execute the module, it is easy, fast and I lazy 😅, So as I understand that F5 key of IDLE is not going to work with Anaconda working environments.

    • @manu1995007
      @manu1995007 2 года назад +2

      @@JoseAntonio-jf5lz Though I dont personally use idle, I am pretty sure any editor can be configured to use any python interpreter installed on the system (in this case the python provided by the Anaconda installation). You just need to go in your interpreter settings, and give it the path of the python executable located inside the anaconda directory/environment. Just make sure all the environment variables are consistent.

    • @JoseAntonio-jf5lz
      @JoseAntonio-jf5lz 2 года назад +1

      @@manu1995007 Thank you, I 'll try to find the way

  • @aaronv2photography
    @aaronv2photography Год назад +3

    I watched like a dozen tutorials like this and you are really doing something amazing. You are starting with why and what things are and what they do and then why do them using analogies that people without programming experience can really connect the symbolic functionality of something to real world situations to understand... again, what something does, how and why. The amount of tutorials for beginners I see that jump straight into just the hello world command without explaining anything to do with logistics, organization, management and just plain... keeping things organized in my mind so that I don't feel overwhelmed is just crazy. So thank you for just... being awesome at what you do.

  • @michaelknight1458
    @michaelknight1458 Год назад +2

    I never comment unless a person really inspires me. Great work with your approach to sharing what you know. You’re a gifted teacher.

  • @David-zp8rx
    @David-zp8rx 2 года назад +2

    You are the best teacher on the internet! Thanks for simplifying this for us!

  • @gitcotech
    @gitcotech 2 года назад +1

    I am going to watch every single video on this channel. I do not know why but the way you do you makes it soooooo easy. Thanks again.

  • @bfrAliShettima
    @bfrAliShettima Месяц назад +1

    I already subscribed to your channel before finishing the video due to the quality of your presentation. This short video has answered all my questions and clear every doubt I had.

  • @XXMrMister
    @XXMrMister 2 года назад +1

    I've been programming in another language for 10 year but I couldn't explain it better than you.

  • @staffiman
    @staffiman Год назад +2

    Thank you so much Mariya for this informative video on Anaconda for Python! Your clear explanations and helpful tips have made it so much easier for me to understand and navigate this powerful tool. Your dedication to sharing your knowledge is truly appreciated. Keep up the great work!

  • @NikolayOlkhovsky
    @NikolayOlkhovsky Год назад +2

    Excellent brief tutorial! Exactly what I needed. Thank you.

  • @arastooajorian9069
    @arastooajorian9069 2 года назад

    that was the best tutorial I've ever seen on how to install a platform! thank you very much.

  • @2002budokan
    @2002budokan 5 месяцев назад

    I found this channel ~10 minutes ago, this girl is a gem.

  • @aristideregal
    @aristideregal 2 года назад +7

    Thank you!!! Very well explained. I actually learned a couple of things. You're the best!

    • @PythonSimplified
      @PythonSimplified  2 года назад +2

      Thank you so much!! I'm super glad you liked this tutorial! 😁
      I've been working with Anaconda from the very beginning of my Python journey so it's about time I film a proper tutorial on it! 😅 hahahaha

  • @Napkin2d
    @Napkin2d Год назад

    I love how you explain what you're doing in your videos! It made me subscribe!

  • @behzodhoshimov3792
    @behzodhoshimov3792 2 года назад +1

    Thank you too. 😉 I really enjoy watching your videos.

  • @dehawkinsNC
    @dehawkinsNC 10 месяцев назад

    This video was great. Thanks soo much for creating this install video. Right on time!🤩

  • @trtlphnx
    @trtlphnx 2 года назад +4

    I Love Pygame, Thanks Sweetie For Giving Such a Hands On Tutorial To Working This Out ~
    Love You and The Channel ~

    • @PythonSimplified
      @PythonSimplified  2 года назад +1

      Thank you so much dear! 😁
      I got lots of questions about Pygame installations so I thought I'll hit 2 birds with one stone 😉
      BTW, you can still install it with newer version of Python, not just 2.7! you'll just need to know the specific Pygame version that is supported by your specific Python version which is not always an easy task!
      I find that the safest bet is to go for an older one as it's been heavily tested and it can be easily installed! 😊
      Other versions are a bit more hustle, but they're still do-able!

  • @KUNDANKUMAR-vz4vl
    @KUNDANKUMAR-vz4vl 2 года назад +1

    When beautiful teacher teaches a subject
    My interest level -> ♾️ 🤩

  • @phil5293
    @phil5293 Год назад

    Great video as usual. Thanks for the bonus Windows install instructions!

  • @javascriptes
    @javascriptes 6 месяцев назад

    That's awesome, I am new to Python and I tried pyenv but was facing so many issues. As a Mac user Conda worked outstanding. Thank you!

  • @oldguy3525
    @oldguy3525 Год назад

    The BEST instructor on RUclips

  • @victorpinasarnault9135
    @victorpinasarnault9135 2 года назад +1

    Thank you!
    I use Ubuntu and I have been struggling with anaconda. I will try uninstall and install again.
    Already subscribed.
    Thank you Maryia.

  • @007walk
    @007walk 10 месяцев назад

    I've been using python for a few years, creating virtual env for my projects. But I was going through one of your Numpy tutorial and saw anaconda again and though maybe that might make things a bit easier. From watching this video I believe it will.

  • @jamalmubaraky6679
    @jamalmubaraky6679 Год назад

    Thanks to your excellent explanation, I was able to install Anaconda and run Jupyter, So ready to sail into the gorgeous world of Python.. 👏🥰🌹

  • @aristideregal
    @aristideregal 2 года назад +5

    Reminder set

  • @einzwei3364
    @einzwei3364 2 года назад

    Hi, nice video. Anaconda really is great but I think mamba and the mambaforge distro are also quite nice and deserve a mentioning here as they are also easy cross plattform, very lightweight and with the mamba environment management things are way faster, though you still need conda to activate the different environments.

  • @n0madfernan257
    @n0madfernan257 9 месяцев назад

    that was very helpful and easy. love the time stamps and was just looking for windows part. thanks.

  • @gabrielguglielmikirtschig2276
    @gabrielguglielmikirtschig2276 2 года назад

    Great video! Learned a lot, thank you so much!

  • @ZurioSi
    @ZurioSi 2 года назад +9

    As always you have the best content!. Keep going and I hope you fix the problem with the drivers ASAP, if you need any help let us know :).

    • @PythonSimplified
      @PythonSimplified  2 года назад +5

      Thank you so much dear!! I was indeed about to post a "help me" short video but then I got a response from the original devs offering me some help with the set up! 😃
      I'm gathering energies to deal with it as we speak! I had 3 days of troubleshooting where I ended in the same spot as I started... a clean installation of Ubuntu because I messed it up so bad that even the "boot options menu" wouldn't load! 🤣🤣🤣
      It just really drives me crazy when I know that something can be done - but it still doesn't work!!! and there's not much info about my errors anywhere so I'm assuming it's because my laptop is very special hahahah
      Thanks again! 😊

  • @udbhav3760
    @udbhav3760 2 года назад +3

    Many new things I learn from your channel videos thank you mariya ✌️🤜🤛

    • @PythonSimplified
      @PythonSimplified  2 года назад +1

      Thank you so much! I'm happy to help! 😁😁😁

  • @antoniopadilla2949
    @antoniopadilla2949 2 года назад

    Great video! Just like that SIMPLIFIED!! I really like it. Thanks.

  • @claudelabadie9506
    @claudelabadie9506 4 месяца назад

    Wow! I love listening to you! Thank you for the great tutorial.

  • @mibrahim4245
    @mibrahim4245 2 года назад

    you and your tutorials are gold !! :)

  • @dykesdarsh
    @dykesdarsh 3 дня назад +1

    OMG I LOVE U! Just saved my whole life!!

  • @kvelez
    @kvelez 10 месяцев назад +1

    Thanks for the Linux demo, I needed it.
    Have a great day.

    • @PythonSimplified
      @PythonSimplified  10 месяцев назад +1

      You're welcome! I'm actually returning to this tutorial evetime I get a fresh install (correctly running Kali)
      I can never remember the ~/.bashrc stuff 😅😅😅

    • @kvelez
      @kvelez 10 месяцев назад

      @@PythonSimplified hahaha, is always good to prepare tools in advance.

  • @01ALPHA
    @01ALPHA 2 года назад +3

    As always this was very helpful!👍😃

  • @svergurd3873
    @svergurd3873 6 месяцев назад

    Mariya is a very good teacher! Excellent clear explanations. Several of your videos have been very useful to me.

    • @PythonSimplified
      @PythonSimplified  6 месяцев назад +1

      Thank you so much, dear! Super happy to help!!! 😃

  • @quangmango7776
    @quangmango7776 2 года назад

    I enjoy watching and learning your video. It's simple and well explained to understand and follow along. Love Linux Ubuntu as well... 🙂

  • @lobogrisx7
    @lobogrisx7 2 года назад

    Oh I love you I finally figured out what the heck Anaconda was

  • @alanatlantistv
    @alanatlantistv Год назад

    Your video help me a lot to install my env with Conda and Visual Studio Code. I follow lessons from "Introduction to machine learning with python" book THANKS

  • @danielq1985
    @danielq1985 2 года назад +1

    Well done! This is a great video. You are really gifted at explaining concepts. Also, love the sloth shirt! My daughter was a sloth for Halloween 🎃

    • @PythonSimplified
      @PythonSimplified  2 года назад

      Thank you so much Daniel! 😃
      Definitley a great costume choice! (I was a "savage moose" this year 😁)

  • @mufeedco
    @mufeedco Год назад

    Thank you. This is the best how to use Anaconda Python in Ubuntu video that I understand.

  • @ajsim
    @ajsim Год назад

    Great work. Thank you! Very helpful

  • @business_central
    @business_central 2 года назад +2

    You truly do simplify everything!
    Thank you (y)
    Please do how to set up VS code next for best layout/template & plugins/extensions to have

  • @BigPoppaJNutZ
    @BigPoppaJNutZ 2 года назад +2

    Thanks for another great tutorial!

    • @PythonSimplified
      @PythonSimplified  2 года назад +1

      Thank you so much! super glad you liked it! 😁😁

  • @mofolasadeAryk
    @mofolasadeAryk Год назад

    you are the best python teacher ever

  • @laurelcrafts3219
    @laurelcrafts3219 Год назад

    This video is very helpful. Thank you.

  • @deepseadarew6012
    @deepseadarew6012 7 месяцев назад

    Wonderful tutorial. Thank you!

  • @Yachid
    @Yachid 2 года назад +2

    the furniture illustration waz quite smart 😉

  • @bfrAliShettima
    @bfrAliShettima Месяц назад +1

    Your video has answered all my questions

  • @omarkerbouche708
    @omarkerbouche708 6 месяцев назад

    Thank you, this was very helpful.

  • @thesattary
    @thesattary 8 месяцев назад

    you can use the ``` conda update conda ``` command for updating conda rather than the command that terminal suggest, but you should move on to the base environment.
    thanks for your high-quality stuff :)

  • @TRAMETOOLS
    @TRAMETOOLS Год назад

    Great tutorial. Thanks!

  • @Jerrel.A
    @Jerrel.A Год назад

    What an excellent presentation and lecture.

  • @NikoNemo
    @NikoNemo 2 года назад

    Nice nice, i love it :) !

  • @IqbalMahmudweb
    @IqbalMahmudweb 4 месяца назад

    Thank you for this tutorial. It helps me to understand the Anaconda deeply. Best of luck 🎉

  • @mdkrush
    @mdkrush 2 года назад +2

    Awesome! Thank you!

  • @MrDragoon73
    @MrDragoon73 Год назад

    Unique presentation. I m really enjoying your humorous yet technically accurate videos. Keep going

  • @frosty_alpaca8491
    @frosty_alpaca8491 2 года назад

    Thank you for the knowledge!

  • @timbui5556
    @timbui5556 Год назад

    You are an amazing teacher!

  • @MiniRobotShop
    @MiniRobotShop 2 года назад

    Thanks for this video, sensei Mariya

  • @reihanehmirjalili4676
    @reihanehmirjalili4676 Год назад

    Amazing tutorial!!!

  • @mcdazz2011
    @mcdazz2011 Год назад

    Thanks - I learned a lot.

  • @personalprometheus2297
    @personalprometheus2297 Год назад

    Thank you Mariya, your content is very helpful.

  • @SergioGarcia-sw4rs
    @SergioGarcia-sw4rs 7 месяцев назад

    OMG! I've being jumping from phyton, to VS, to Anaconda and I made mess! From now on I'm gonna stick to Conda. Thanks for this great video. Great tutorial.👏👍❤

  • @randyw5564
    @randyw5564 2 года назад

    2 thumbs up! Thanks!

  • @jellyfish1772
    @jellyfish1772 10 месяцев назад

    this was really helpful. thank you

  • @garadzienski
    @garadzienski Год назад

    Oh, I have the same wallpaper that you have on your Windows
    Great video, thanks 👍

  • @MohamedEssam-sh3ol
    @MohamedEssam-sh3ol 2 года назад

    Thank you!!
    it was great simple video

  • @sajidmtariq2676
    @sajidmtariq2676 Год назад

    Thanks Maam Loved your tutorial

  • @d-rey1758
    @d-rey1758 Год назад

    Awesome!

  • @user-wr4yl7tx3w
    @user-wr4yl7tx3w 2 года назад

    great and clear explanation

  • @licos5938
    @licos5938 Год назад

    Hello ,
    cool video : very interesting and well explained (with extra charm ;)

  • @matinfazel8240
    @matinfazel8240 Год назад

    thanks for your complete guide

  • @soliver111
    @soliver111 2 месяца назад

    Thank you
    This was very helpful and informative.
    Well done.
    Oh, I installed both Linux and windows versions. I found the windows versions slower but very feature rich.
    Cheers

  • @po9098
    @po9098 2 года назад

    Had a good laugh between 2:52 to 3:01! Awesome tutorial!

  • @sdmj45
    @sdmj45 8 месяцев назад

    greate video ! Thank you so much !

  • @kirbyurner
    @kirbyurner 2 года назад +1

    Fine work as usual.

  • @khalidelgazzar
    @khalidelgazzar 6 месяцев назад

    Great video 😃👍 thank you

  • @lakewobegonesbest8725
    @lakewobegonesbest8725 Год назад

    F5/Enter + “Boom!”:
    The telltale sign of a genuine programmer.

  • @diegoarmandourreamendez1873
    @diegoarmandourreamendez1873 Месяц назад +1

    Really nice your explanation 🎉🎉🎉

  • @cloudproblemssolved
    @cloudproblemssolved 2 месяца назад

    thx for getting to the point of how to make a virtual environment

  • @dbiswas123
    @dbiswas123 Год назад +1

    This a great video. It helped me

    • @easydatascience2508
      @easydatascience2508 Год назад

      You can try mine too. The channel has both Python and R tutorial playlists, and you can find link to source file in description of the video.

  • @lucassebastianborda6645
    @lucassebastianborda6645 2 года назад +1

    That's great 👍! Thanks Mariya

  • @skwaweruKE
    @skwaweruKE Год назад

    I like your videos, nice job.

  • @tomarq
    @tomarq 2 года назад +2

    Thank you for this information.

  • @zimbackpacker
    @zimbackpacker Месяц назад

    i swear i love your teaching and much more your personality. something about the face i think. i definitely will pass my machine learning now

  • @diwakar_tsn
    @diwakar_tsn Год назад

    Now im learning anaconda
    Thanks mariya ❤️

  • @JohnWickXD
    @JohnWickXD Год назад

    Thanku so much👀✨

  • @acomputech6422
    @acomputech6422 8 месяцев назад

    great video ,very helpful..

  • @soufienebouzid8657
    @soufienebouzid8657 Год назад

    great video thank you

  • @rrivillox
    @rrivillox 2 года назад +2

    When I programmed with Windows, the only way that I installed Python 3 (any version) was with Anaconda so, I have very good memories. Thanks, Maryia. Pygame tutorial soon? Happy Tuesday 💗

    • @PythonSimplified
      @PythonSimplified  2 года назад +2

      Happy Tuesday rrivillox! 😀
      We'll dive into Flask and Sqlite sooner than Pygame, but I will definitely cover it as well! I'm planning to build a car game with it, but web development and 3-tier application architecture is a bit more urgent (at least I believe so hahahaha...😅)
      I saw that many people were struggling with installing Pygame so I had to provide my take on it! It can be installed with newer version of Python, I didn't mention it in the tutorial - but it would be a bit more difficult than the solution provided in this video 😉 It was heavily tested with 2.7 so it works like a charm! and it seems that people who try to combine it with Python 3 are running into too many issues 😵

    • @rrivillox
      @rrivillox 2 года назад

      @@PythonSimplified that's OK. Don't worry. I forget the Python Web Framework's Contest 😱

  • @Beast80K
    @Beast80K 2 года назад +1

    Ma'am, you make good simple easy to understand content, Thanks !
    *If possible please make a video on how to convert .py file to Linux .Deb executable*

  • @slobodanstamenkovic6017
    @slobodanstamenkovic6017 2 года назад

    Thank you !

  • @LeftyRC
    @LeftyRC 2 года назад

    Great video

  • @igortomasloriente
    @igortomasloriente Год назад

    Super!

  • @tonihullzer1611
    @tonihullzer1611 2 года назад +1

    perfect video, thx!

  • @JorgeEscobarMX
    @JorgeEscobarMX 2 года назад +1

    Anaconda seems like the a solution to run projects in older python versions.

    • @PythonSimplified
      @PythonSimplified  2 года назад +1

      Yup! it allows you to keep up with the new versions without compromising the projects you've built with the older ones 😃

  • @SteveHartmanVideos
    @SteveHartmanVideos 2 года назад

    thank you!

  • @think7022
    @think7022 2 года назад

    Very help thanks

  • @soultribe9
    @soultribe9 2 года назад

    So nice to see you again M! Really interesting video as always. and... also, did you watch Knotfest LA? did you like the new song?