-
Notifications
You must be signed in to change notification settings - Fork 3
Installing Python3.6
Frank Chen edited this page Jan 31, 2017
·
1 revision
Our integration tests require Python3.5+ for the run
command, so we will outline how to install and link Python3.6:
- Run the following the first install Python3.6:
sudo add-apt-repository ppa:jonathonf/python-3.6
sudo apt-get update
sudo apt-get install python3.6
- Check where Python3.6 was installed:
which python3.6
- Symlink Python3.6 to this path (in order for the Makefile to run)
ln -s <your python3.6 path link> /usr/local/bin/python3.6