You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Well it works on my side. There is a dependency missing in your case but since you havn't posted steps in between it is difficult to guess why. The script is designed to be run in the git directory of Sony-PMCA-RE since the very last step should install the requirements from "requirements.txt" in the git directory of this repo. So with some steps before the original script this fits in my case:
cd /tmp # the directory here is arbitrary
git clone https://github.com/ma1co/Sony-PMCA-RE.git
cd Sony-PMCA-RE
# now come the script's steps:
wget https://www.python.org/ftp/python/3.8.7/Python-3.8.7.tar.xz
tar -xJf Python-3.8.7.tar.xz
rm Python-3.8.7.tar.xz
cd Python-3.8.7/
mkdir ../Python387bin
PWD= pwd
./configure --prefix=$PWD/../Python387bin
make -j8
make install
cd ..
virtualenv --python=./Python387bin/bin/python3 venv
source venv/bin/activate
python3 -m pip install -r requirements.txt
# finally you run the application right from this directory
python pmca-gui.py
Running on Arch Linux
i created following bash script to install it on arch linux
should be similar on ubuntu
install with yay or pacman
yay -S tk python-virtualenv
thank you very much for this project!
thank you for the help https://github.com/mvforell <3
please consider updating to python3.9 and creating some instructions for use on linux
following issue should be fixed too for 3.9:
replace array.array.tostring() with array.array.tobytes()
see googlesamples/assistant-sdk-python#418
The text was updated successfully, but these errors were encountered: