This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
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.
- If you installed lemonsync from source (ran
git clone ..
thenpython 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
LemonSync is maintained by LemonStand eCommerce