Setting Up Python Virtual Environments with virtualenv and virtualenvwrapper
Environment Setup
Operating System: Windows 10
Python Version: 3.6.7
virtualenv
Installation
virtualenv creates isolated Python environments, allowing different project dependencies to remain separate. Install it using pip on Windows:
pip install virtualenv
Creating a Virtual Environment
Use the virtualenv command with appropriate parameters ...
Posted on Wed, 27 May 2026 21:25:09 +0000 by gutogouveia
Essential Debian System and Development Commands
Package Management with dpkg
Install a local .deb package:
sudo dpkg -i package.deb
Remove a package while keeping configuration files:
sudo dpkg -r package_name
Purge both the package and its configuration files:
sudo dpkg --purge package_name
List all installed packages:
dpkg -l
Display information about a .deb file:
dpkg -I package.deb
...
Posted on Fri, 08 May 2026 20:08:11 +0000 by naskar