Skip to content
This repository has been archived by the owner on Apr 1, 2022. It is now read-only.

Requirements and Dependencies

Gurkirat Singh edited this page Sep 23, 2018 · 2 revisions

Requirements

Morphine is based on python language. It can be executed by either python2.x or python3.x or both. But python3.x is recommended

Python Download Link

  • Windows

  • Linux

    alternatives

    • Ubuntu/Debian
      $ sudo apt-get update
      $ sudo apt-get upgrade -y
      $ sudo apt-get install python3 python3-pip -y
      
    • Arch Linux
      $ sudo pacman -S python python-pip --noconfirm
      
    • Other Linux Distros
      $ wget https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tar.xz
      $ tar xvf Python-3.7.0.tar.xz
      $ cd Python-3.7.0.tar.xz
      $ ./configure
      $ make
      $ make install
      
  • MacOS X

Dependencies

Morphine depends on 2 python packages

  1. yapf
    $ pip install --user yapf
    
  2. PyQt5
    $ pip install --user pyqt5
    
Clone this wiki locally