| | #!/bin/bash |
| |
|
| | |
| | apt update |
| |
|
| |
|
| |
|
| | |
| | git clone https://bitbucket.org/secourses/rop-unleash |
| |
|
| | |
| | cd rop-unleash |
| |
|
| | |
| | |
| |
|
| | |
| | python -m venv venv |
| |
|
| | |
| | source venv/bin/activate |
| |
|
| | python -m pip install --upgrade pip |
| |
|
| | cd .. |
| |
|
| |
|
| | |
| | pip install -r requirements.txt |
| |
|
| |
|
| | wget https://developer.download.nvidia.com/compute/cudnn/9.10.2/local_installers/cudnn-local-repo-ubuntu2204-9.10.2_1.0-1_amd64.deb |
| | dpkg -i cudnn-local-repo-ubuntu2204-9.10.2_1.0-1_amd64.deb |
| | cp /var/cudnn-local-repo-ubuntu2204-9.10.2/cudnn-*-keyring.gpg /usr/share/keyrings/ |
| | apt-get update |
| | apt-get -y install cudnn |
| |
|
| |
|
| | python Fix.py |
| |
|
| | |
| | yes | apt-get install -y python3.10-tk |
| |
|
| | yes | apt-get install ffmpeg |
| |
|
| | yes | apt-get install p7zip-full |
| |
|