For Apple silicon to use brewed Python
# Homebrew brew install python
.zshrc
, connect PATHexport PATH="$(brew --prefix)/opt/python@3.11/libexec/bin:$PATH"
# check python version python --version # command using specific version python3
pip
Package installer for Python
# check pip version pip --version # use specific version pip3
# List installed packages pip list # View contents of `pipfile.lock` in pipenv pipenv lock -r
pip3 install -r requirements.txt