I was getting this error in Ubuntu:
Code:
Cannot find rpatool or unrpyc in UnRen v0.8.2 Tools. Exiting.
I couldn't find the solution on the forum, but in the end I managed to find the solution on my own.
This happens because rpatool and unrpyc try to use the python command. However,
if you have python2 installed on your system, you will only have the python2 command available.
The solution is to create a
symbolic link for python with the following command:
Code:
sudo ln -s /usr/bin/python2 /usr/bin/python
And that's it. Now it should work for you without any problem. At least it worked for me.
But this is not the only problem I had.
At first, when I wanted to open the application for the first time, I got the following error:
Code:
python is not installed, or not added to your PATH. Please install/reinstall it from python.org
Python 3 is not supported by unrpyc; you need a Python 2 installation
The problem is that the latest versions of ubuntu only bring python 3 in their repositories. And the repositories with python 2 no longer work.
The solution is to install manually.
First we have to make sure we have the necessary
dependencies for manual installation with the following commands:
Code:
sudo apt update
sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev \
libssl-dev libreadline-dev libffi-dev curl
Then we use the following commands to install python2:
Code:
cd /usr/src
sudo curl -O https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tgz
sudo tar xvf Python-2.7.18.tgz
cd Python-2.7.18
sudo ./configure --enable-optimizations
sudo make -j$(nproc)
sudo make altinstall
Next, we verify the installation with:
Now you will have the python2.7 command, but we need the python2 command only, so we create a symbolic link for python2 with the following command:
Code:
sudo ln -s /usr/bin/python2.7 /usr/bin/python2
And that's it.