https://www.linkedin.com/learning/python-3-10-first-look
Learn about the new features in Python 3.10.
- Learn the improvements and the deprecations introduced in Python 3.10
- Learn how to port to Python 3.10 from an older version
- Install python 3: https://www.python.org/downloads/.
- Configure the IDE Interpreter to use Python 3 and setup the run configuration: https://www.jetbrains.com/help/pycharm/creating-and-editing-run-debug-configurations.html?keymap=secondary_macos.
- Create a dedicated virtual environment for the project and use it as the project interpreter in the IDE:
python3.10 -m venv ./venv/ source venv/bin/activate
This project is licensed under the terms of the MIT License. Please see LICENSE for details.