Managing Python Environments on Linux: Setup and Workflow with Miniconda
Miniconda OverviewConda serves as an open-source package and environment management system, streamlining the installation and dependency management of software across various operating systems. While Anaconda offers a massive, pre-bundled suite of libraries suitable for data science, Miniconda provides a minimal footprint. It includes only Pyth ...
Posted on Fri, 05 Jun 2026 18:44:06 +0000 by CSB
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
Practical Conda Command-Line Reference for Environment and Package Management
Core Utilities and System Updates
Verify the installed distribution version and synchronize dependencies before proceeding.
conda --version
conda update conda
conda update --all
Virtual Environment Lifecycel
Isolate project dependencies using distinct environments. Create, replicate, inspect, or discard them as needed.
Initialization & Clo ...
Posted on Fri, 08 May 2026 20:38:53 +0000 by niesom