Skip to content

Latest commit

 

History

History
72 lines (54 loc) · 2 KB

utils-python.md

File metadata and controls

72 lines (54 loc) · 2 KB

Python dev

Host

List / Learn

Common Helper

Pipenv is a tool that aims to bring the best of all packaging worlds (bundler, composer, npm, cargo, yarn, etc.) to the Python world

PIP

# to check current pip config
pip config debug

# to change pip directory 
pip config set global.target /Users/Bob/Library/Python/3.8/lib/python/site-packages

# to check current version
pip -V

# since python installed the new version in folder specified in ENV: PYTHONUSERBASE
# but python wanted only to use the pip from the /Users/Bob/Library/Python/3.x.x/lib/python/site-packages
# then i have copied/paste the pip folder froml PYTHONUSERBASE to site-packages

HTTP Request

STARTER

TOOLS

LIB

DATA

UTIL