Investigations - Python
Tips
CERT Errors
__main__
Simple Easy Http Server
pyenv
Installation
Basic: https://github.com/pyenv/pyenv/wiki/Common-build-problems
ERROR: The Python ssl extension was not compiled. Missing the OpenSSL lib?
in short, brew unlink openssl@3 openssl@1.1 pkg-config
might help (actually pkg-config
part).
uv
Installation
-
First steps | uv - https://docs.astral.sh/uv/getting-started/first-steps/
$ curl -LsSf https://astral.sh/uv/install.sh | sh
Update
$ uv self update
ShellCompletion
-
Installation | uv - https://docs.astral.sh/uv/getting-started/installation/#shell-autocompletion
Haruki Personally
$ (mkdir -p ~/.bash_completion.d && echo 'eval "$(uv generate-shell-completion bash)"' > ~/.bash_completion.d/uv-completion.bash)
References
-
uv (pythonパッケージマネージャー)の使い方 詳細版 - https://zenn.dev/tabayashi/articles/52389e0d6c353a