Created
May 1, 2020 13:16
-
-
Save hopewise/4f3a296bbacf350a9a6781ff391910a1 to your computer and use it in GitHub Desktop.
Install Taurus at Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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