How to Install Selenium on PyCharm?

Selenium for Python allows you to write functional tests and acceptance tests providing an API to access WebDrivers such as Firefox, Internet Explorer, Chrome. Problem Formulation: Given a PyCharm project. How to install the Selenium library in your project within a virtual environment or globally? Here’s a solution that always works: Open File > Settings … Read more

How to Install OpenCV (cv2) on PyCharm?

OpenCV is a framework for image processing and image recognition—among other things. It’s a super powerful tool in your data science and machine learning toolbelt! But how to install it in your PyCharm environment? This article will show you how! Problem Formulation: Given a PyCharm project. How to install the OpenCV library in your project … Read more

How to Install Flask on PyCharm?

Flask is a Python web development framework for rapid prototyping. You can launch web-based applications very quickly in Flask! ? Problem Formulation: Given a PyCharm project. How to install the Flask library in your project within a virtual environment or globally? Here’s a solution that always works: Open File > Settings > Project from the … Read more

How to Install Kivy on PyCharm?

Kivy is an open-source Python library for rapid development of applications using innovative user interfaces such as multi-touch. Problem Formulation: Given a PyCharm project. How to install the Kivy library in your project within a virtual environment or globally? Here’s a solution that always works: Open File > Settings > Project from the PyCharm menu. … Read more

How to Install PyGame on PyCharm?

Problem Formulation: Given a PyCharm project. How to install the PyGame library in your project within a virtual environment or globally? Solution that always works: Open File > Settings > Project from the PyCharm menu. Select your current project. Click the Python Interpreter tab within your project tab. Click the small + symbol to add … Read more

How to Install NumPy on PyCharm?

Problem Formulation: Given a PyCharm project. How to install the NumPy library in your project within a virtual environment or globally? Solution that always works: Open File > Settings > Project from the PyCharm menu. Select your current project. Click the Python Interpreter tab within your project tab. Click the small + symbol to add … Read more

How to Install Django on PyCharm?

Problem Formulation: Given a PyCharm project. How to install the Django library in your project within a virtual environment or globally? Solution that always works: Open File > Settings > Project from the PyCharm menu. Select your current project. Click the Python Interpreter tab within your project tab. Click the small + symbol to add … Read more

Python Version End-of-Live (EOL)

Check Python Version You can check your Python version by running python ‐‐version in your terminal or command line. End of Life Python Versions (Table) But when does security support for your Python version end? To learn about the end-of-life of different Python versions, check out the following table: Version Released Security Support (EOL) 3.9 … Read more

Python Version Bit – Does My Python Shell Run 32 Bit or 64 Bit Version?

To check which bit version the Python installation on your operating system supports, simply run the command “python” (without quotes) in your command line or PowerShell (Windows), terminal (Ubuntu, macOS), or shell (Linux). This will open the interactive Python mode. The first line provides information whether it’s a 32 bit or 64 bit version. Alternatively, … Read more

The Nature of Software Development

Developing software is a huge task which may easily overwhelm you. You need to learn not only the programming language itself, but also algorithms and algorithmic design. You need to master tools like Git (cheat sheets here), improve your debugging and testing skills, and improve your collaboration skills when working in teams (e.g. agile methods). … Read more

Python Version Anaconda

Open Terminal: On Windows, start Anaconda by searching for “Anaconda Prompt” and click the first result. On Linux and macOS, just open the terminal or shell. Then run either of the following commands, depending on what you want to do. Python Anaconda Version: To check your Python version in Anaconda, run python -V or python … Read more

Python IDLE vs PyCharm

This article shows you when to use which of my top two Python editors: IDLE and PyCharm. IDLE Best for Small Scripts In 90% of cases, I’m using the out-of-the-box IDLE editor to write small scripts and Python programs. It’s lightweight, simple, and provides basic functionality such as syntax highlighting in shell and Python files. … Read more