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
I get an error on this last step when it tries to install pyinstaller==4.1
ModuleNotFoundError: No module named 'PyInstaller.main'; 'PyInstaller' is not a package
I've tried using Powershell and tried the bundled version of pip (19.0.3), same error. I also tried following the steps under "Extra Packages for Windows Development" and then reran the command, same error. Specifying various other versions of PyInstaller in requirements.txt also did not work, some different errors usually occur.
Is this just a strange dependency issue or am I doing something wrong?
The text was updated successfully, but these errors were encountered:
Specifying pyinstaller==4.10 in requirements.txt seemed to fix it. It runs from cmd with the command python game2text.py just fine, and build.bat seems to produce a working .exe in the dist folder.
OS: Windows 10
Python version: 3.7.4
To replicate:
python -m pip install --upgrade pip
pip install virtualenv
cd Game2Text/
virtualenv venv --python=python3.7.4
cd venv/Scripts/
activate.bat
cd ../../
pip install -r requirements.txt
I get an error on this last step when it tries to install pyinstaller==4.1
I've tried using Powershell and tried the bundled version of pip (19.0.3), same error. I also tried following the steps under "Extra Packages for Windows Development" and then reran the command, same error. Specifying various other versions of PyInstaller in requirements.txt also did not work, some different errors usually occur.
Is this just a strange dependency issue or am I doing something wrong?
The text was updated successfully, but these errors were encountered: