Install PyInstaller on MSYS2 MinGW
up vote
3
down vote
favorite
I want to install PyInstaller
on MinGW
but installing with pip
fails with an error.
distutils.errors.DistutilsPlatformError: VC 6.0 is not supported by this module
How do I install it correctly? If this is not possible, what other options do I have? I am trying to build a Python GTK+3 application on Windows from the Linux version.
python pyinstaller pygobject
add a comment |
up vote
3
down vote
favorite
I want to install PyInstaller
on MinGW
but installing with pip
fails with an error.
distutils.errors.DistutilsPlatformError: VC 6.0 is not supported by this module
How do I install it correctly? If this is not possible, what other options do I have? I am trying to build a Python GTK+3 application on Windows from the Linux version.
python pyinstaller pygobject
Have you tried installing the latest version ofsetuptools
? Are you using Python 2 or 3?
– RoadRunner
Nov 10 at 12:53
I am using python 3.7.1. How do I install the latest version? pip3 says it's up to date (40.5.0)
– Shaoyu Tseng
Nov 10 at 12:56
I'm not too sure what the issue is. Have you tried manually installing it? Like downloading the sourcetar.gz
from here, unzipping it, and runningpython3 setup.py install
.
– RoadRunner
Nov 10 at 13:00
that seems to have worked. Thanks!
– Shaoyu Tseng
Nov 10 at 13:06
Glad to hear. I added a more descriptive answer below for future readers.
– RoadRunner
Nov 10 at 13:19
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I want to install PyInstaller
on MinGW
but installing with pip
fails with an error.
distutils.errors.DistutilsPlatformError: VC 6.0 is not supported by this module
How do I install it correctly? If this is not possible, what other options do I have? I am trying to build a Python GTK+3 application on Windows from the Linux version.
python pyinstaller pygobject
I want to install PyInstaller
on MinGW
but installing with pip
fails with an error.
distutils.errors.DistutilsPlatformError: VC 6.0 is not supported by this module
How do I install it correctly? If this is not possible, what other options do I have? I am trying to build a Python GTK+3 application on Windows from the Linux version.
python pyinstaller pygobject
python pyinstaller pygobject
edited Nov 10 at 15:27
lgwilliams
129211
129211
asked Nov 10 at 12:46
Shaoyu Tseng
234
234
Have you tried installing the latest version ofsetuptools
? Are you using Python 2 or 3?
– RoadRunner
Nov 10 at 12:53
I am using python 3.7.1. How do I install the latest version? pip3 says it's up to date (40.5.0)
– Shaoyu Tseng
Nov 10 at 12:56
I'm not too sure what the issue is. Have you tried manually installing it? Like downloading the sourcetar.gz
from here, unzipping it, and runningpython3 setup.py install
.
– RoadRunner
Nov 10 at 13:00
that seems to have worked. Thanks!
– Shaoyu Tseng
Nov 10 at 13:06
Glad to hear. I added a more descriptive answer below for future readers.
– RoadRunner
Nov 10 at 13:19
add a comment |
Have you tried installing the latest version ofsetuptools
? Are you using Python 2 or 3?
– RoadRunner
Nov 10 at 12:53
I am using python 3.7.1. How do I install the latest version? pip3 says it's up to date (40.5.0)
– Shaoyu Tseng
Nov 10 at 12:56
I'm not too sure what the issue is. Have you tried manually installing it? Like downloading the sourcetar.gz
from here, unzipping it, and runningpython3 setup.py install
.
– RoadRunner
Nov 10 at 13:00
that seems to have worked. Thanks!
– Shaoyu Tseng
Nov 10 at 13:06
Glad to hear. I added a more descriptive answer below for future readers.
– RoadRunner
Nov 10 at 13:19
Have you tried installing the latest version of
setuptools
? Are you using Python 2 or 3?– RoadRunner
Nov 10 at 12:53
Have you tried installing the latest version of
setuptools
? Are you using Python 2 or 3?– RoadRunner
Nov 10 at 12:53
I am using python 3.7.1. How do I install the latest version? pip3 says it's up to date (40.5.0)
– Shaoyu Tseng
Nov 10 at 12:56
I am using python 3.7.1. How do I install the latest version? pip3 says it's up to date (40.5.0)
– Shaoyu Tseng
Nov 10 at 12:56
I'm not too sure what the issue is. Have you tried manually installing it? Like downloading the source
tar.gz
from here, unzipping it, and running python3 setup.py install
.– RoadRunner
Nov 10 at 13:00
I'm not too sure what the issue is. Have you tried manually installing it? Like downloading the source
tar.gz
from here, unzipping it, and running python3 setup.py install
.– RoadRunner
Nov 10 at 13:00
that seems to have worked. Thanks!
– Shaoyu Tseng
Nov 10 at 13:06
that seems to have worked. Thanks!
– Shaoyu Tseng
Nov 10 at 13:06
Glad to hear. I added a more descriptive answer below for future readers.
– RoadRunner
Nov 10 at 13:19
Glad to hear. I added a more descriptive answer below for future readers.
– RoadRunner
Nov 10 at 13:19
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
Ussually if a pip install doesn't work, I always revert to the manual installation.
Steps:
- Download the source
PyInstaller-3.4.tar.gz
file from here. - Navigate to your Downloads folder and unzip the file with
tar xf PyInstaller-3.4.tar.gz
. If your using Windows, you can use 7zip or something.
cd
intoPyInstaller-3.4
and runpython3 setup.py install
. Usingpython
orpython3
depends on how you've set up Python on your operating system.
This will install the PyInstaller
module in the same way as pip, just takes some extra steps to perform.
Even though I have it installed now, the executables produced doesn't actually work. The output itError loading Python DLL 'C:msys64homezandimnabuildalibpython3.7m.dll'. LoadLibrary: The specified module could not be found.
EDIT: I can use it with --onefile.
– Shaoyu Tseng
Nov 10 at 18:03
@ShaoyuTseng I always runpyinstaller --onfile --noconsole
to product a single executable with no console window showing up in the background.
– RoadRunner
Nov 11 at 1:31
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
Ussually if a pip install doesn't work, I always revert to the manual installation.
Steps:
- Download the source
PyInstaller-3.4.tar.gz
file from here. - Navigate to your Downloads folder and unzip the file with
tar xf PyInstaller-3.4.tar.gz
. If your using Windows, you can use 7zip or something.
cd
intoPyInstaller-3.4
and runpython3 setup.py install
. Usingpython
orpython3
depends on how you've set up Python on your operating system.
This will install the PyInstaller
module in the same way as pip, just takes some extra steps to perform.
Even though I have it installed now, the executables produced doesn't actually work. The output itError loading Python DLL 'C:msys64homezandimnabuildalibpython3.7m.dll'. LoadLibrary: The specified module could not be found.
EDIT: I can use it with --onefile.
– Shaoyu Tseng
Nov 10 at 18:03
@ShaoyuTseng I always runpyinstaller --onfile --noconsole
to product a single executable with no console window showing up in the background.
– RoadRunner
Nov 11 at 1:31
add a comment |
up vote
1
down vote
accepted
Ussually if a pip install doesn't work, I always revert to the manual installation.
Steps:
- Download the source
PyInstaller-3.4.tar.gz
file from here. - Navigate to your Downloads folder and unzip the file with
tar xf PyInstaller-3.4.tar.gz
. If your using Windows, you can use 7zip or something.
cd
intoPyInstaller-3.4
and runpython3 setup.py install
. Usingpython
orpython3
depends on how you've set up Python on your operating system.
This will install the PyInstaller
module in the same way as pip, just takes some extra steps to perform.
Even though I have it installed now, the executables produced doesn't actually work. The output itError loading Python DLL 'C:msys64homezandimnabuildalibpython3.7m.dll'. LoadLibrary: The specified module could not be found.
EDIT: I can use it with --onefile.
– Shaoyu Tseng
Nov 10 at 18:03
@ShaoyuTseng I always runpyinstaller --onfile --noconsole
to product a single executable with no console window showing up in the background.
– RoadRunner
Nov 11 at 1:31
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
Ussually if a pip install doesn't work, I always revert to the manual installation.
Steps:
- Download the source
PyInstaller-3.4.tar.gz
file from here. - Navigate to your Downloads folder and unzip the file with
tar xf PyInstaller-3.4.tar.gz
. If your using Windows, you can use 7zip or something.
cd
intoPyInstaller-3.4
and runpython3 setup.py install
. Usingpython
orpython3
depends on how you've set up Python on your operating system.
This will install the PyInstaller
module in the same way as pip, just takes some extra steps to perform.
Ussually if a pip install doesn't work, I always revert to the manual installation.
Steps:
- Download the source
PyInstaller-3.4.tar.gz
file from here. - Navigate to your Downloads folder and unzip the file with
tar xf PyInstaller-3.4.tar.gz
. If your using Windows, you can use 7zip or something.
cd
intoPyInstaller-3.4
and runpython3 setup.py install
. Usingpython
orpython3
depends on how you've set up Python on your operating system.
This will install the PyInstaller
module in the same way as pip, just takes some extra steps to perform.
edited Nov 10 at 13:31
answered Nov 10 at 13:18
RoadRunner
8,58331137
8,58331137
Even though I have it installed now, the executables produced doesn't actually work. The output itError loading Python DLL 'C:msys64homezandimnabuildalibpython3.7m.dll'. LoadLibrary: The specified module could not be found.
EDIT: I can use it with --onefile.
– Shaoyu Tseng
Nov 10 at 18:03
@ShaoyuTseng I always runpyinstaller --onfile --noconsole
to product a single executable with no console window showing up in the background.
– RoadRunner
Nov 11 at 1:31
add a comment |
Even though I have it installed now, the executables produced doesn't actually work. The output itError loading Python DLL 'C:msys64homezandimnabuildalibpython3.7m.dll'. LoadLibrary: The specified module could not be found.
EDIT: I can use it with --onefile.
– Shaoyu Tseng
Nov 10 at 18:03
@ShaoyuTseng I always runpyinstaller --onfile --noconsole
to product a single executable with no console window showing up in the background.
– RoadRunner
Nov 11 at 1:31
Even though I have it installed now, the executables produced doesn't actually work. The output it
Error loading Python DLL 'C:msys64homezandimnabuildalibpython3.7m.dll'. LoadLibrary: The specified module could not be found.
EDIT: I can use it with --onefile.– Shaoyu Tseng
Nov 10 at 18:03
Even though I have it installed now, the executables produced doesn't actually work. The output it
Error loading Python DLL 'C:msys64homezandimnabuildalibpython3.7m.dll'. LoadLibrary: The specified module could not be found.
EDIT: I can use it with --onefile.– Shaoyu Tseng
Nov 10 at 18:03
@ShaoyuTseng I always run
pyinstaller --onfile --noconsole
to product a single executable with no console window showing up in the background.– RoadRunner
Nov 11 at 1:31
@ShaoyuTseng I always run
pyinstaller --onfile --noconsole
to product a single executable with no console window showing up in the background.– RoadRunner
Nov 11 at 1:31
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53239095%2finstall-pyinstaller-on-msys2-mingw%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Have you tried installing the latest version of
setuptools
? Are you using Python 2 or 3?– RoadRunner
Nov 10 at 12:53
I am using python 3.7.1. How do I install the latest version? pip3 says it's up to date (40.5.0)
– Shaoyu Tseng
Nov 10 at 12:56
I'm not too sure what the issue is. Have you tried manually installing it? Like downloading the source
tar.gz
from here, unzipping it, and runningpython3 setup.py install
.– RoadRunner
Nov 10 at 13:00
that seems to have worked. Thanks!
– Shaoyu Tseng
Nov 10 at 13:06
Glad to hear. I added a more descriptive answer below for future readers.
– RoadRunner
Nov 10 at 13:19