-1

When running a python script in Linux its throwing an error,

wine: cannot find '/root/.wine/drive_c/Python27/Scripts/pyinstaller.exe'

And installing wine from also fails.
OS: Kali Linux 2020
Python-version: 3.6

Luna
  • 21
  • 6

1 Answers1

1

To install wine. We’ll first enable maltiarch, then update the system and finally install wine.
Follow the commands

sudo dpkg --add-architecture i386
sudo apt-get update 
sudo apt-get install wine:i386
sudo apt-get install wine-bin:i386

And that's all.
Verify by running wine --version .

Harshit Ruwali
  • 1,040
  • 2
  • 10
  • 22