Skip to content

Instantly share code, notes, and snippets.

@hopewise
Created May 1, 2020 13:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hopewise/4f3a296bbacf350a9a6781ff391910a1 to your computer and use it in GitHub Desktop.
Save hopewise/4f3a296bbacf350a9a6781ff391910a1 to your computer and use it in GitHub Desktop.
Install Taurus at Ubuntu
#install python3.5
sudo apt-get install build-essential checkinstall
sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
cd /usr/src
wget https://www.python.org/ftp/python/3.5.6/Python-3.5.6.tgz
sudo wget https://www.python.org/ftp/python/3.5.6/Python-3.5.6.tgz
sudo tar xzf Python-3.5.6.tgz
cd Python-3.5.6
sudo ./configure --enable-optimizations
sudo make altinstall
python3.5 -V
pip install --upgrade pip
pip install bzt
#install Java
sudo apt update
sudo apt install default-jdk
java -version
#install python-tk
sudo apt-get install python-tk
python -c 'from bzt.modules.screen
bzt quick_test.yml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment