top of page
Search

Python

  • Writer: Kiazsoft
    Kiazsoft
  • Apr 29, 2020
  • 1 min read

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>

 
 
 

Recent Posts

See All
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...

 
 
 

コメント


©2022 KIAZSOFT CONSULTING INC

bottom of page