Skip to main content

POSTS

2 posts

How to setup a python virtual environment on windows 11

A virtual environment, or venv, is a Python module that creates a unique environment for each task or project. It installs the necessary packages specific to that setting while neatly organizing your projects. Venv never modifies the system’s default Python versions or system modules. Using it allows a unique working environment to avoid disruptions to other Python variants existing but unrelated to your project.

Python test

My team has designed and built a desktop app which can analyze and count the number of pushups. With this intelligence feature and an attractive user interface, our application is expected to make workout more enjoyable. This post will share you our design and implementation of this idea.