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
- sudo apt-get update
- sudo apt-get upgrade
- sudo apt-get dist-upgrade
- sudo apt-get install build-essential python-dev python-setuptools python-pip python-smbus
- sudo apt-get install build-essential libncursesw5-dev libgdbm-dev libc6-dev
- sudo apt-get install zlib1g-dev libsqlite3-dev tk-dev
- sudo apt-get install libssl-dev openssl
- cd ~
- mkdir build
- cd build
- wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tgz
- tar -zxvf Python-3.6.0.tgz
- cd Python-3.6.0
- ./configure
- make
- 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.