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

Поделиться
HTML-код
  • Опубликовано: 23 янв 2025

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

  • @JoseAntonio-jf5lz
    @JoseAntonio-jf5lz 3 года назад +16

    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  3 года назад +28

      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 3 года назад +1

      @@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 3 года назад +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 3 года назад +2

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

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

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

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

    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.

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

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

  • @chaimaghemati8713
    @chaimaghemati8713 4 месяца назад +1

    Mariya I really enjoy your tutorials at the point that when I am unmotivatedand burned out, I go away to your channel to have some positive energy. Love you ❤and Keep going.

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

    Thanks for posting these tutorials. Just getting back into Python after having not touched it for a decade and yours are the most helpful.

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

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

  • @bfrAliShettima
    @bfrAliShettima 8 месяцев назад +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.

  • @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.

  • @KurtSiemon-yh3jr
    @KurtSiemon-yh3jr 3 месяца назад

    Thanks for putting time into this Mariya! Found you through the Python Show!

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

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

  • @2002budokan
    @2002budokan Год назад

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

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

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

    • @PythonSimplified
      @PythonSimplified  3 года назад +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!

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

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

    • @PythonSimplified
      @PythonSimplified  3 года назад +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

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

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

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

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

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

    The BEST instructor on RUclips

  • @apexfossa
    @apexfossa 2 дня назад

    Thank you for the tutorial! It makes sense now, creating environments and activating them

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

    The best explanation I have ever seen in my life, with the perfect words and even more so if it is said by a woman as talented and beautiful as this. My mind doesn't want to forget even a second of video

  • @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!

  • @dykesdarsh
    @dykesdarsh 6 месяцев назад +2

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

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

    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!

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

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

    • @PythonSimplified
      @PythonSimplified  Год назад +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 Год назад

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

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

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

  • @victorpinasarnault9135
    @victorpinasarnault9135 3 года назад +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.

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

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

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

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

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

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

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

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

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

    you are the best python teacher ever

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

    🙂 You make it look so easy. I followed your instructions and loved it. I just hit the subscribe button. Thank you, really.

  • @ZurioSi
    @ZurioSi 3 года назад +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  3 года назад +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! 😊

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

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

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

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

  • @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

  • @SergioGarcia-sw4rs
    @SergioGarcia-sw4rs Год назад

    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.👏👍❤

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

    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

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

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

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

    the furniture illustration waz quite smart 😉

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

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

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

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

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

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

  • @danielq1985
    @danielq1985 3 года назад +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  3 года назад

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

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

    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 :)

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

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

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

    Reminder set

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

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

  • @007walk
    @007walk Год назад

    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.

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

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

  • @bfrAliShettima
    @bfrAliShettima 8 месяцев назад +1

    Your video has answered all my questions

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

    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

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

    Thank you for a clear and extremely useful tutorial on Anaconda.

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

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

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

    Really useful!, perfect for my final work!

  • @phsopher
    @phsopher 3 года назад +7

    Thanks for the video! What's the benefit of using Anaconda compared to the built in Python venv or the virtualenv module?

    • @PythonSimplified
      @PythonSimplified  3 года назад +8

      This is a great question, Phsopher! 😀
      1. Conda is both a package manager (like pip) and an environment manager (like venv) so it already has a great benefit there! 😊
      2. You don't have to worry about installing basic packages like Pandas and Numpy, as they are automatically installed by Anaconda.
      3. Also, in my opinion - conda has simpler commands than venv and I find that it's really well maintained as opposed to PyPI which sometimes provides outdated installation commands.
      Other than that - there's not much difference! We can install Jupyter Notebook regardless of Anaconda with "pip install jupyter" and there's always an alternative for everything!
      I find it to be very convenient as I like being extra-organized, but it all comes down to personal preferences! 😉

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

    you and your tutorials are gold !! :)

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

    Thanks for the video.. Hi everyone, i want to correct something in this video. If your conda command not found after anaconda installation, simply change to root user by type sudo -s , then type source ~/.bashrc . the reason is source ~/.bashrc not working unless you are superuser/root

  • @diegoarmandourreamendez1873
    @diegoarmandourreamendez1873 8 месяцев назад +1

    Really nice your explanation 🎉🎉🎉

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

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

  • @JamesBond-xi1cz
    @JamesBond-xi1cz 6 месяцев назад

    hi, had problems installing anaconda got the next errors: File "concurrent/futures/process.py", line 424, in wait_result_broken_or_wakeup
    file "multiprocessing/connection.py", line 251, in recv TypeError: InvalidArchiveError.__init__() missing 1 required positional argument: "msg", trying to install linux-mint 21

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

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

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

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

  • @tonym5857
    @tonym5857 3 года назад +1

    Hi M.. again you saving time to newbies 👏with a great new video. Request: Video about your background in A.I. courses summary, University, math and others. Regards ☘️

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

      Hi Tony, thank you so much! 😃 I have another Python beginners video coming up in a few days with the perfect road map to learning Python (it was a viewers request from a while back, so it's more of an advice vlog rather than a tutorial 😉)
      My background in AI is a 100% self-taught through extensive article reading and lots of math doodles (trying to implement the algorithms step by step with a pen an paper). I took a fancy course back in 2018 but I didn't understand a thing! so everything you see on this channel is a result of this long journey 🙂
      I'll post a university video review soon, I'm trying to catch up with a few project before I do so. In terms of math, I've tried filming a video or two but it doesn't seem like people choose to watch these so I'll stick to programming 😜

    • @samuelalbu
      @samuelalbu 3 года назад

      @@PythonSimplified This is so encouraging to hear now that I embark on a similar journey. Thanks for your great tutorials!

  • @julianmartinez7520
    @julianmartinez7520 3 месяца назад +1

    great tutorial, i have Question, in a production enviroment that runs docker container how do you use anaconda ?

    • @PythonSimplified
      @PythonSimplified  3 месяца назад

      You pull an Anaconda image or some other image that comes with Anaconda installed, or alternativley, you build your own image with Docker Init and include an Anaconda installation command in your Dockerfile 😃

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

    Thanks for another great tutorial!

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

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

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

    As always this was very helpful!👍😃

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

    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?

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

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

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

    You are an amazing teacher!

  • @fouezdesign
    @fouezdesign 3 года назад

    See guys ? Go through YT and i bet anyone find someone simplify for us the information better than her ... So Thank you Missy

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

    can you please tell me what is the relation between the creation of a new environment and the jupiter terminal?

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

    I have installed the anaconda in windows actually but when I'm typing conda in an anaconda prompt, it's showing an error :
    Import Error: cannot import name 'JSONDecodeError' from 'requests.exceptions' (C:\users\......file location....\exceptions.py).
    So whenever I'm trying to run conda info, conda list, conda env list, or conda install packagename, that error appears. Hope you know something.

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

    Thank you Mariya, your content is very helpful.

  • @DanielŚmigiela
    @DanielŚmigiela 3 года назад +1

    you are so sweet ! I love your voice. Your's tutorials are the best ! I'm php programmer, but i love python, ML, raspberry pi and more :) greetings from Poland, sweetie :)

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

      Thank you so much for the lovely comment, Daniel! 😃 Dziękuję! (that's the only Polish word I know that's not a curse word hahahaha)
      Greetings back from Vancouver! 🤩

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

    I asked you about Anaconda before, thanks for the tutorial. Looking forward to the Jupyter one!

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

      Thank you so much Alex! 😃
      Sorry, I didn't remember you requested it, I would have added your comment to the beginning of the video!! I guess it was really long ago, eh? (or maybe I'm having a grandma moment 😅 hahahaha)

  • @rrivillox
    @rrivillox 3 года назад +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  3 года назад +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 3 года назад

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

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

    I desperately need your help
    I am working with Rhino 3D and I want to run the matplotlib library in Grasshopper (a Rhino plugin).
    For this I need to install gh-python-remote
    In the installation requirements of gh-python-remote it is written that you need to install Python 2. Does this mean that we need to install Python 2.01? Or is it possible to install Python 2.7.18?
    Then it says that you need to create a rhinoremote environment in Anaconda
    Two questions arise
    Does the presence of Python 3.12 in the system prevent Python 2 from working?
    If I installed the matplotlib library with the help of Anaconda, do I have to keep Anaconda on every time I do something in Rhino Grass Hopper?

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

    hello. WHy are you installing ANaconda by using a command promp? Isn't easier to just click install on the installation menu? rather than deal with a command prompt? thanks

  • @antonio--padilla
    @antonio--padilla 3 года назад

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

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

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

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

    Nice vid... I have a question. I installed it on a linux box and installed a package that I needed via PIP but when I try to import the library python tells me that it is not installed. I use pip list and the package shows installed. any idea on how to fix this? TIA!

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

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

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

    So is there any case where someone would program in Python's IDLE vs Anaconda or any other tool?

  • @Hussein.H.A
    @Hussein.H.A Год назад

    Hello, from the first moment I saw the video clip, it is beautiful and your style of explanation is wonderful and your face has a trace of a smile on it 😊 ... Can you give me a road map to learn Python, because I am distracted and do not know where to start learning, as there are multiple courses...
    Should I learn at Anaconda or from VSC.
    Thank you very much 🙏🌹🌹

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

      Thank you, Hussein! 😃
      It doesn't really matter where you learn. It's more about the order in which you learn. You can check out my Python Learning roadmap here:
      ruclips.net/video/wFEC7VbWBZo/видео.html
      And you can combine it with the Python Simplified navigator (which I haven't updated in a while, I'll add the newer tutorials to it shortly 😅):
      www.pythonsimplified.org/post/python-simplified-video-navigator
      You'll find many online courses, articles, and academies that can teach you very well. It's really up to you which learning environment you prefer 😃
      Best of luck on your Python journey, and I hope my roadmap helps 😉

    • @Hussein.H.A
      @Hussein.H.A Год назад

      ​​@@PythonSimplified
      Thank you , Mariya 🌹, I will follow on your roadmap.
      I wish you more brilliance, development and success.

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

    Does anaconda create a separate copy of python for each environment using it or does it just link to one copy?

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

      Thank you for the question, Pat! 😊
      When you navigate to "C:\Users\Mariya\anaconda3\envs" on Windows or to "home\mariya\anaconda3\envs" on Linux:
      you'll find version-specific files of your Python installation; So each environment indeed has separate copies! 😀
      Additionally, if you navigate to the "pkgs" folder instead of "envs" you'll find that all the packages are already on your system! you just pick and choose which ones to install in which environment.
      So Anaconda then is a great solution when you do not have limited space resources (as it takes about 3GB worth of space), but then the benefit of this is that you don't need to have an internet connection when you work with conda! pip, on the other hand, downloads packages from the internet so you may not waste as much space - but you depend on an internet connection and on a reliable download source 😉
      Hope it helps! :)

    • @patwicker1358
      @patwicker1358 3 года назад

      @@PythonSimplified Thank you Mariya, this is very helpful.

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

    What an excellent presentation and lecture.

  • @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... 🙂

  • @corneliuslumos668
    @corneliuslumos668 3 года назад

    Hi ! Great video I learned a lot of new things, could you deactivate the bell on the terminal, the sound is particularly sharp and loud with headphones :-)

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

    Is there any point installing Anaconda, if I already have Python installed and VS Code? Anaconda looks more intuitive in the video, but it's hard to say..

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

      I believe it's mostly a matter of personal preference... The best way to know is to try and see what works best for you 😃
      I use Anaconda as it manages both my virtual environments and the modules I install. In addition, I'm working with very simple text editors rather than IDEs like VS Code when it comes to Python. I don't think there's a good reason for that other than personal convenience 😉

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

    question: whats the difference between creating a environment with conda, and using a Python container from Docker?

  • @MisterK-YT
    @MisterK-YT 2 года назад +1

    So this can essentially replace pipenv and venv and pyenv???

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

      Yup! it's like the lovechild of Venv and Pip 😁😁😁

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

    Can u help me?
    I choose all users when install anaconda
    Then i tried to install package in anaconda prompt but it's not working
    Like ..conda install numpy
    Then it's said something like environment problem and it gave its path
    So i just copied it and put it in my system environment 🤗
    But it's still saying that same thing 😑
    If u can help me with this 🙂

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

    Thanks for this video, sensei Mariya

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

    Hi Maria, First of all, Thanks a lot 💗. Your Playlists made my career. Can you please make video on Regular expression?

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

    Now im learning anaconda
    Thanks mariya ❤️

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

    Awesome! Thank you!

  • @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.

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

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

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

    Is 'conda activate' will works only in console what you has opened, or it will work in global env too?

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

      Hi Vladimir! 😀
      When it comes to Windows - conda commands only work within an Anaconda terminal.
      Linux, however, has no special terminal for Anaconda and you run it directly from your command prompt 😊

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

    I am trying to install Miniconda in Windows 10, but it fails with the message "Failed to initialize Anaconda directories".
    I do already have Python 3.10 and Pycharm installed. Please can you suggest a solution for me, thank you

  • @2020gn
    @2020gn 3 года назад

    What are the benefits of using the command line to create virtual environments when Anaconda has a built in GUI to do the same thing?

  • @hopi9927
    @hopi9927 3 года назад

    Dear,How can I set up vscode IDE for python-opencv and other one python-kivy projects ?

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

    That's great 👍! Thanks Mariya