Installing Python 3.6 - MrYsLab/xideco GitHub Wiki

You must use Python 3.6.X to run Xideco

###Windows and Mac Users

To install Python 3.6 or later, go to the Python home page, and download the 3.6.0 (or later) distribution for your operating system.

If you have Python 2.7 installed, you do not need to remove it.

During the installation process, if there is a checkbox to add Python 3.6 to your path, make sure it is checked before proceeding with the installation.

###Linux Users: If you are using linux, here are the build and installation instructions

  1. sudo apt-get update
  2. sudo apt-get upgrade
  3. sudo apt-get dist-upgrade
  4. sudo apt-get install build-essential python-dev python-setuptools python-pip python-smbus
  5. sudo apt-get install build-essential libncursesw5-dev libgdbm-dev libc6-dev
  6. sudo apt-get install zlib1g-dev libsqlite3-dev tk-dev
  7. sudo apt-get install libssl-dev openssl
  8. cd ~
  9. mkdir build
  10. cd build
  11. wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tgz
  12. tar -zxvf Python-3.6.0.tgz
  13. cd Python-3.6.0
  14. ./configure
  15. make
  16. sudo make install

After Installation Verify The Python Version

After installation, open a command window and type: python -V. You should see Python 3.6.0 or something similar.