# Python ## Virtual Envs Create: python3 -m venv Run: source /bin/activate ### requirements.txt Create based on currently installed packages: pip freeze > requirements.txt Install from requirements: python -m pip install -r requirements.txt ### Jupyter Notebook Setting default browser: # generates a config file under ~/.jupyter/ jupyter notebook --generate-config # edit the newly generated config c.NotebookApp.browser = ' %s'