top of page
Search
Writer's pictureKiazsoft

Python

Install a python package using pip (on mac use pip3)

pip install <package name>
On Mac
pip3 install <package name>

Upgrade pip installation. Python and pip are maintained independently so pip version should be upgraded separately.

pip install --upgrade pip
On Mac
pip3 install --upgrade pip

Uninstall a package

pip3 uninstall <package name>

4 views0 comments

Recent Posts

See All

Mac Useful Commands

Show hidden files in Finder Command + Shift + .

Git

Removing file from all history. git filter-branch --force --index-filter \ "git rm --cached --ignore-unmatch PATH-TO-FILE" \...

MongoDB

Mongo Sample find query db.getCollection("user").find( { "username" : "kia" }, {//projections "username": 1.0, //1.0 means include...

Comments


bottom of page