18 September 2025
cloudedIt depends on what YOU are interested in.
I was thinking of starting django/flask but wanted to know what other things i can explore
Habeeiiyyno brother i watched videos,read documents,written codes...
Well still one month is short time
19 September 2025
SI want to install pip I am using Ubuntu always showing error externally managed environment
Use it:
python3 -m venv venv
source ./venv/bin/activate
Afterwards, you can use pip
SWhen I am trying to sudo pip install in venv showing error externally managed environment
why are you sudo-ing inside a venv? It's a venv
SWhen I am trying to sudo pip install in venv showing error externally managed environment
just activate the venv and just pip install
SWhen I am trying to sudo pip install in venv showing error externally managed environment
why do you need to sudo?
SYeah thanks 😊 got it
and you never sudo pip install outside a venv in Linux. If you need a package, use the distro package manager or do a pip user install, never sudo (unless you know what you're doing)