Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Upgrading Python

Bruce Alderson edited this page Jul 11, 2016 · 6 revisions

Using homebrew to install Python 2.7.10 with OpenSSL 1.0.2h

$ brew update

$ brew install openssl

$ brew link openssl --force 

$ brew install python --with-brewed-openssl 

Now you should see the new versions:

$ python --version  
Python 2.7.10

$ python -c "import ssl; print ssl.OPENSSL_VERSION"
OpenSSL 1.0.2h 3 Mar 2016

Next, depending on how you installed LemonSync you'll need to reinstall with your new version of python.

  1. If you installed lemonsync from source (ran git clone .. then python setup.py install), you should reinstall LemonSync by running the install command from within your LemonSync directory:

$ cd LemonSync

$ sudo python setup.py install


2. If you used Pip, python's package manager, you should upgrade LemonSync:

[sudo] pip uninstall lemonsync [sudo] pip install lemonsync --upgrade

For support:

Email: support@lemonstand.com

Clone this wiki locally