Skip to main content

Command reference for programmers

 requirements.txt file for installing python packages

You can use a requirements.txt file to install multiple Python packages at once.

 1. Create a requirements.txt file

This file should list all the packages you want to install, with each package on a new line. Example:

makefile

numpy==1.23.1 pandas>=1.5 requests matplotlib<=3.6
  • == specifies an exact version.
  • >= installs a minimum version.
  • <= installs up to a certain version.

2. Install packages using requirements.txt

Run the following command in your terminal or command prompt:



pip install -r requirements.txt

This will install all the packages listed in the file.

3. Generate a requirements.txt file (Optional)

If you already have packages installed in your environment and want to create a requirements.txt file, run:


pip freeze > requirements.txt

This will generate a list of installed packages with their versions. Please note that output may be a dump of all packages in the environment that may not be very useful. 


Creating and using virtual environment in python

Using minoconda:

There is a detailed post here, for quick reference here is the command to be used:

conda create --name myenv python=3.9 conda activate myenv


mentioning python and its version is not mandatory if you want to use a common python


Using built-in python virtual environment:

python -m venv myenv
myenv\Scripts\activate     # On Windows


Github commands quick reference


Clone:

git clone https://github.com/username/repo.git

Create new repo (local):

git init
[or git init --initial-branch=main # If default branch name to be main]
git add .
git commit -m "Initial commit"
git branch -M main
git remote add origin https://github.com/username/repo.git
git push -u origin main

Working with changes:

git status         # Check status of changes
git add file.py    # Stage a file
git add .          # Stage all changes
git commit -m "Message"  # Commit changes
git push origin main     # Push to remote repo

Pull latest change:

git pull origin main  # Get latest changes

Working with branches:

git branch feature-branch       # Create new branch
git checkout feature-branch     # Switch to branch
git switch feature-branch       # Alternative (modern)
git checkout -b new-feature     # Create & switch
git push -u origin new-feature  # Push branch to remote

Merge branches:

git checkout main
git merge feature-branch
git push origin main


Comments

Popular posts from this blog

Example 1: ArchiMate relationship in PlantUML code to demonstrate 15 relationship types

 Following section presents 15 types of relationships in ArchiMate and PlantUML to generate the diagram. Since this code is generated by GEN-AI it may require precision on aspects other than PlantUML syntax: Diagram Plant UML Code:  @startuml '!includeurl https://raw.githubusercontent.com/plantuml-stdlib/Archimate-PlantUML/master/Archimate.puml ' Another way of including Archimate Library (above is commented for following) !include <archimate/Archimate> !theme archimate-standard from https://raw.githubusercontent.com/plantuml-stdlib/Archimate-PlantUML/master/themes title ArchiMate Relationships Overview <style> element{     HorizontalAlignment: left;     MinimumWidth : 180;     Padding: 25; } </style> left to right direction rectangle Other {     Business_Role(Role_SeniorManager, "Senior Manager")     Business_Role(Role_Manager, "Manager") } rectangle Dynamic {     Business_Event(Event_CustomerReques...

Mastering Trade-Off Analysis in System Architecture: A Strategic Guide for Architects

 In system architecture and design, balancing conflicting system qualities is both an art and a science. Trade-off analysis is a strategic evaluation process that enables architects to make informed decisions that align with business goals and technical constraints. By prioritizing essential system attributes while acknowledging inevitable compromises, architects can craft resilient and efficient solutions. This enhanced guide provides actionable insights and recommendations for architects aiming to master trade-off analysis for impactful architectural decisions. 1. Understanding Trade-Off Analysis Trade-off analysis involves identifying and evaluating the conflicting requirements and design decisions within a system. Architects must balance critical aspects like performance, scalability, cost, security, and maintainability. Since no system can be optimized for every quality simultaneously, prioritization based on project goals is essential. Actionable Insights: Define key quality ...

Virtual environments in python

 Creating virtual environments is essential for isolating dependencies and ensuring consistency across different projects. Here are the main methods and tools available, along with their pros, cons, and recommendations : 1. venv (Built-in Python Virtual Environment) Overview: venv is a lightweight virtual environment module included in Python (since Python 3.3). It allows you to create isolated environments without additional dependencies. How to Use: python -m venv myenv source myenv/bin/activate # On macOS/Linux myenv\Scripts\activate # On Windows Pros: ✅ Built-in – No need to install anything extra. ✅ Lightweight – Minimal overhead compared to other tools. ✅ Works across all platforms . ✅ Good for simple projects . Cons: ❌ No dependency management – You still need pip and requirements.txt . ❌ Not as feature-rich as other tools . ❌ No package isolation per project directory (requires manual activation). Recommendation: Use venv if you need a simple, lightweight solut...