Search This Blog

Friday, October 3, 2025

git push hangs after Total line (Total 7 (delta 3), reused 0 (delta 0), pack-reused 0 after no response)

 After git Commit -a -m "message"

    git config --global http.postBuffer 157286400

    git push   or  git push -u origin main



Tuesday, September 23, 2025

Python Virtual Environment - venv

 check which gives python v 10

******************************

python --version

py --version

python3.10 --version


To create Python 10 Virtual Environment

windows

1. <python/py> -m venv pyV10Env //to generate that version venv

2. .\pyV10Env\Scripts\activate.bat

3. py --version

4. python --version

5. //all set go, use ur py commands

6. deactivate


linux

1. <python/py> -m venv pyV10Env //to generate that version venv

2. source nse_env/bin/activate

3. py --version

4. python --version

5. //all set go, use ur py commands

6. deactivate

 

Hit Counter


View My Stats