Thanks! I’m currently learning Python and will find this useful.
Modern Python Developer's Toolkit
11–20 of 24 posts
Re: Modern Python Developer's Toolkit
#12Pointing people to VS Code just because it’s one of top three, where the other two options are Visual Studio and NP++ is strange to say at least. VS Code is probably one of the top five options, but not mentioning PyCharm as one of the top choices is not right. There’s a significant difference between a general purpose pluggable code editor, such as VC Studio, Atom, Sublime… and actual IDE made for Python.
Re: Modern Python Developer's Toolkit
#13Pointing people to VS Code just because it’s one of top three, where the other two options are Visual Studio and NP++ is strange to say at least. VS Code is probably one of the top five options, but not mentioning PyCharm as one of the top choices is not right. There’s a significant difference between a general purpose pluggable code editor, such as VC Studio, Atom, Sublime… and actual IDE made for Python.
Re: Modern Python Developer's Toolkit
#14Pointing people to VS Code just because it’s one of top three, where the other two options are Visual Studio and NP++ is strange to say at least. VS Code is probably one of the top five options, but not mentioning PyCharm as one of the top choices is not right. There’s a significant difference between a general purpose pluggable code editor, such as VC Studio, Atom, Sublime… and actual IDE made for Python.
Re: Modern Python Developer's Toolkit
#15Apart from the fact that the "editor" section sounds like an infomercial for VSCode, why would you overload a beginner with all that virtual environment bloat? The whole "open" source system is marching backwards towards inscrutable IDEs that do work by magic and leave the user clueless.
Virtual environments are, sadly, absolutely crucial for Python beginners to get their heads around if they are to do anything more advanced then "hello world". When I'm getting someone started I usually say: "There is a magic incantation involved in Python development called 'activating your virtual environment' - if stuff isn't working as you expect, check that you have done this. Development environments are the ha…
When first learning python and virtual environments, it took me a little bit of time to understand that the virtual environment is basically a clean slate.
The command above saved a lot of time. I’d go so far as to having a set of requirements files ready to go for certain types of projects just to get started.
Re: Modern Python Developer's Toolkit
#16Pointing people to VS Code just because it’s one of top three, where the other two options are Visual Studio and NP++ is strange to say at least. VS Code is probably one of the top five options, but not mentioning PyCharm as one of the top choices is not right. There’s a significant difference between a general purpose pluggable code editor, such as VC Studio, Atom, Sublime… and actual IDE made for Python.
Python is not open source and crucial features like remote python interpreter is behind a paywall. I don’t see why anyone would use pycharm
Re: Modern Python Developer's Toolkit
#17Re: Modern Python Developer's Toolkit
#18Pointing people to VS Code just because it’s one of top three, where the other two options are Visual Studio and NP++ is strange to say at least. VS Code is probably one of the top five options, but not mentioning PyCharm as one of the top choices is not right. There’s a significant difference between a general purpose pluggable code editor, such as VC Studio, Atom, Sublime… and actual IDE made for Python.
Python is not open source and crucial features like remote python interpreter is behind a paywall. I don’t see why anyone would use pycharm
Eh? Do you mean pycharm? Even so what's wrong with a professional product being paid-for and closed source? Developers have to eat too, many of which I'd imagine also contribute to other opensource projects, using... pycharm.
Re: Modern Python Developer's Toolkit
#19Pointing people to VS Code just because it’s one of top three, where the other two options are Visual Studio and NP++ is strange to say at least. VS Code is probably one of the top five options, but not mentioning PyCharm as one of the top choices is not right. There’s a significant difference between a general purpose pluggable code editor, such as VC Studio, Atom, Sublime… and actual IDE made for Python.
I personally find VSCode the easiest editor to set up for Python development and the most powerful. I tried to set up the remote debugging in PyCharm, but it didn’t work. The refactoring tools available via pylance, linting with pycodestyle and the remote editing in VSCode took very little time or effort to set up and allow me to use the same editor I use for PHP, Zig and Rust. I have been working to set up neovim fo…
Glad you found your happy place, that matters more than the actual feature set provided, IMO.
Re: Modern Python Developer's Toolkit
#20I don't have the time right now to watch the whole video so sorry if it's addressed, but what is the current state of packaging python applications for users? This was the biggest pain point for me the last time I worked with python outside of writing libraries. I think I was working on a Qt app and it was such a pain to find a way in particular to target multiple platforms.