Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.rst

Gatsby Python Wiki

Path

python -c "import sys; print('\n'.join(sys.path))"

Install mysqlclient-python

LDFLAGS=-L/usr/local/opt/openssl/lib pip install mysqlclient

Python 2.7 Console printing issue

import sys
import codecs
codecs.register(lambda name: codecs.lookup('utf-8') if name == 'cp65001' else None)
if sys.stdout.encoding != 'UTF-8':
    sys.stdout = codecs.getwriter('utf-8')(sys.stdout, 'strict')
if sys.stderr.encoding != 'UTF-8':
    sys.stderr = codecs.getwriter('utf-8')(sys.stderr, 'strict')

OSX: Install Python - recommended

To prevent seeing "SSL: CERTIFICATE_VERIFY_FAILED"

Strip

External References

Korean Doc: https://docs.python.org/ko/3/

https://awesome-python.com/