brew install pyenv
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile echo -e 'if command -v pyenv 1>/dev/null 2>&1; then\n eval "$(pyenv init -)"\nfi' >> ~/.bash_profile
pyenv install --list
pyenv install -v 3.7.5 pyenv install -v 3.8.0
python -V
pyenv shell 2.7.17
pyenv shell 3.8.0
pyenv versions
pyenv global 3.7.5
pyenv local 3.7.5
pyenv uninstall 3.7.5
pyenv versions pyenv shell 2.7.17 python -V pip install virtualenv virtualenv env source env/bin/activate
python -m venv pygui
source pygui/bin/activate
deactivate
pip install -r requirement.txt
python -m venv env source env/bin/activate
PYTHON_CONFIGURE_OPTS=
jiansoung/issues-list#15 pyenv/pyenv#1375 PYTHON_CONFIGURE_OPTS="--with-tcltk-includes='-I/usr/local/opt/tcl-tk/include' --with-tcltk-libs='-L/usr/local/opt/tcl-tk/lib -ltcl8.6 -ltk8.6'" pyenv install 3.7.4
PYTHON_CONFIGURE_OPTS="--with-tcltk-includes='-I/usr/local/opt/tcl-tk/include' --with-tcltk-libs='-L/usr/local/opt/tcl-tk/lib -ltcl8.6 -ltk8.6'" pyenv install 3.7.4
source pygui/bin/activate pip install -r requirement.txt
https://dev.to/codemouse92/dead-simple-python-project-structure-and-imports-38c6
https://github.com/mousepawmedia/omission
https://dev.to/codemouse92/dead-simple-python-project-structure-and-imports-38c6
https://stackoverflow.com/questions/1470572/ignoring-any-bin-directory-on-a-git-project
git rm -r --cached bin
cat .gitignore /pygui/*