Installing Python and Python control - quangounet/open-control-theory GitHub Wiki

Installation guide

Linux

  • You can install Python from the Ubuntu package repositories. Run the following commands in a terminal

    sudo apt-get update
    sudo apt-get install ipython python-dev python-numpy python-pip python-scipy python-sympy
    sudo pip install control
  • To run Python, type into the terminal

    ipython

Mac

  • Install the Anaconda distribution of Python 3.7 : https://www.anaconda.com/distribution/

  • Next, install Python-control: open a terminal and type

    pip install control
  • To run Python, type into the terminal

    ipython

Windows

  • Install the Anaconda distribution of Python 3.7 : https://www.anaconda.com/distribution/

  • Next, install Python-control: open Anaconda Prompt (from Start Menu) and type

    pip install control
  • To run Python, open the Anaconda Prompt (from Start Menu) and type

    ipython

Loading required packages

Before running any of the code presented in this tutorial, you should copy-paste the following into the ipython command prompt

from numpy import * # package for numerical calculations
from pylab import * # package for graphics
from control import * # package for control theory calculations
from control.matlab import * # package for control theory calculations
ion() # display graphics automatically

Test

Copy-paste the following into the ipython command prompt (after having loaded the required packages as recommended above)

sys = tf([1, 0], [1, 2, 5])
rvect, kvect = rlocus(sys, klist = arange(0, 10, 0.001))

If you see errors such as unknown locale: UTF-8, then exit ipython, copy-paste the following in your terminal, and run ipython again

export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8

For other errors, try troubleshooting using Google first, and then consider sending me an email.

⚠️ **GitHub.com Fallback** ⚠️