Skip to content

Latest commit

 

History

History

README.md

Python

3. Strings, lists, and tuples — Beginning Python Programming for Aspiring Web Developers

Strings, lists, and tuples are objects

pip

python - ImportError: No module named requests - Stack Overflow

sudo pip install requests

pip - How to use requirements.txt to install all dependencies in a python project - Stack Overflow

pip install -r requirements.txt

pip - Python: Installed a local package with pip3, but got module not found error - Stack Overflow

Instead of pip install
python3 -m pip install

python - How to install packages offline? - Stack Overflow

pip download -r requirements.txt
pip install --no-index --find-links /path/to/download/dir/ -r requirements.txt

pip download tensorflow
pip install 'tensorflow-xyz.whl' --no-index --find-links '.'

python 3.x - Install wheel file on off-line machine which has different processor - Stack Overflow

pip download --index-url=https://www.piwheels.org/simple --platform linux_armv7l --no-deps numpy

pipx

pipxproject/pipx: Install and Run Python Applications in Isolated Environments

python3 -m pip install --user pipx
python3 -m pipx ensurepath

On macOS:

brew install pipx
pipx ensurepath

Upgrade pipx with brew update && brew upgrade pipx.

Python CLI

-u unbuffered

how to get python print result in jenkins console output - Stack Overflow

References