Skip to content

Instantly share code, notes, and snippets.

@berkorbay
Last active May 2, 2022 07:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save berkorbay/9fdf1c68b888ab31f0e0149f8f6a44b7 to your computer and use it in GitHub Desktop.
Save berkorbay/9fdf1c68b888ab31f0e0149f8f6a44b7 to your computer and use it in GitHub Desktop.
Unordered list of solutions to annoying problems with Python
## Skip failing installations on requirements.txt
## https://stackoverflow.com/a/54053100/3608936
cat requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 pip install
### Jupyter Notebook not working
## https://stackoverflow.com/a/59571314/3608936
python3 -m notebook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment