DEV Community

Advik
Advik

Posted on

What version of python should you choose

So... you must be wondering... why should I even choose a python version. Why can't I go with the latest one

That is because old python packages might no longer work with the new versions

The best python version is Anaconda
Why? That is because it comes with a lot of needed tools and goodies

AND you can create a virtual environment using a SPECIFIC python version

Did I mention that you can use pip in anaconda:

conda install pip
Enter fullscreen mode Exit fullscreen mode

Then you install any package with pip

pip install PyQt5
Enter fullscreen mode Exit fullscreen mode

Top comments (0)