Skip to content

Instantly share code, notes, and snippets.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@willingc
willingc / python_on_linux_notes.md
Created May 17, 2021 04:54
Python on Linux notes 2021-05-16
@willingc
willingc / pynam_example.ipynb
Created April 15, 2021 15:59
PyNam Example
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@willingc
willingc / output.txt
Created December 6, 2020 22:47
airflow pip python
~/projects/tips via 🐍 pyenv miniconda3-4.7.12 (miniconda3-4.7.12) 🅒 root
➜ pyenv local 3.8.6
~/projects/tips via 🐍 pyenv 3.8.6
➜ python -m venv testenv
~/projects/tips via 🐍 pyenv 3.8.6 took 4s
➜ source testenv/bin/activate
~/projects/tips via 🐍 pyenv 3.8.6 (testenv)
@willingc
willingc / snippet.txt
Created November 20, 2020 19:58
Fix pyenv and Big Sur playing nicely until homebrew updates
# Add this to your zshrc file
# Use only if you have Big Sur and at your own risk
local xc_sdk_path="$(xcrun --show-sdk-path 2>/dev/null || true)"
if [ -d "$xc_sdk_path" ]; then
export CFLAGS="-I${xc_sdk_path}/usr/include ${CFLAGS}"
export LDFLAGS="-L${xc_sdk_path}/usr/lib ${LDFLAGS}"
fi
export PATH="~/.pyenv/bin:$PATH"
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@willingc
willingc / test-notebook-6.1.3.ipynb
Created August 18, 2020 18:44
Test notebook 6.1.3 with Matplotlib
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@willingc
willingc / py.md
Created July 16, 2020 16:01
Resources for Data and Python