Attribute error on python WebUI installation












0















I am trying to install WebUI using pip install WebUI and I got this error



Collecting WebUI
Using cached https://files.pythonhosted.org/packages/45/06/5f4ddb9a5d4acf9600be3a794bee670f778e43bbcd648e3f58cc8326cd6a/WebUI-0.1.7.zip
Collecting Flask==0.10.1 (from WebUI)
Using cached https://files.pythonhosted.org/packages/db/9c/149ba60c47d107f85fe52564133348458f093dd5e6b57a5b60ab9ac517bb/Flask-0.10.1.tar.gz
Collecting Jinja2==2.7.1 (from WebUI)
Using cached https://files.pythonhosted.org/packages/47/83/679b5592feb54e948d6599edf5dac61d2991778c3ecbef6b8041663f4740/Jinja2-2.7.1.tar.gz
Collecting MarkupSafe==0.18 (from WebUI)
Using cached https://files.pythonhosted.org/packages/98/cf/197c3b0f73224b84eb419a967f87565bcc0b0c1147012397e6bd2d45e253/MarkupSafe-0.18.tar.gz
Collecting Werkzeug==0.9.4 (from WebUI)
Using cached https://files.pythonhosted.org/packages/d8/5e/8abc95630f9c4248edffed30592468f884e845ba656a959a12e452fafcec/Werkzeug-0.9.4.tar.gz
Collecting itsdangerous==0.23 (from WebUI)
Using cached https://files.pythonhosted.org/packages/c1/6c/ceefb52b2a5d7d1f2b1b407a96892182161904478b9ef86049e7b8162cb6/itsdangerous-0.23.tar.gz
Collecting pyside==1.2.1 (from WebUI)
Using cached https://files.pythonhosted.org/packages/f1/32/63872fdc1d9e0de5aa0b05b9d1a17d868851c619cdc6998dd9d853556f1b/PySide-1.2.1.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:UsersRBCABR~1AppDataLocalTemppip-install-546zsn2spysidesetup.py", line 82, in <module>
from utils import rmtree
File "C:UsersRBCABR~1AppDataLocalTemppip-install-546zsn2spysideutils.py", line 10, in <module>
import popenasync
File "C:UsersRBCABR~1AppDataLocalTemppip-install-546zsn2spysidepopenasync.py", line 26, in <module>
if subprocess.mswindows:
AttributeError: module 'subprocess' has no attribute 'mswindows'


can someone explain the reason for this error and how to fix this?










share|improve this question























  • What is your python version? If it is 3.5, then renaming mswindows to_mswindows should do the trick

    – Palash Ahuja
    Nov 23 '18 at 1:52











  • 3.6.0 anyway where should I edit that?

    – Reub
    Nov 23 '18 at 2:00











  • you might have to download pyside and then change the line 26 inside popenasync.py, and from the folder run python setup.py install.

    – Palash Ahuja
    Nov 23 '18 at 2:03











  • Also, you may want to check out this answer - stackoverflow.com/questions/47362751/…

    – Palash Ahuja
    Nov 23 '18 at 2:04
















0















I am trying to install WebUI using pip install WebUI and I got this error



Collecting WebUI
Using cached https://files.pythonhosted.org/packages/45/06/5f4ddb9a5d4acf9600be3a794bee670f778e43bbcd648e3f58cc8326cd6a/WebUI-0.1.7.zip
Collecting Flask==0.10.1 (from WebUI)
Using cached https://files.pythonhosted.org/packages/db/9c/149ba60c47d107f85fe52564133348458f093dd5e6b57a5b60ab9ac517bb/Flask-0.10.1.tar.gz
Collecting Jinja2==2.7.1 (from WebUI)
Using cached https://files.pythonhosted.org/packages/47/83/679b5592feb54e948d6599edf5dac61d2991778c3ecbef6b8041663f4740/Jinja2-2.7.1.tar.gz
Collecting MarkupSafe==0.18 (from WebUI)
Using cached https://files.pythonhosted.org/packages/98/cf/197c3b0f73224b84eb419a967f87565bcc0b0c1147012397e6bd2d45e253/MarkupSafe-0.18.tar.gz
Collecting Werkzeug==0.9.4 (from WebUI)
Using cached https://files.pythonhosted.org/packages/d8/5e/8abc95630f9c4248edffed30592468f884e845ba656a959a12e452fafcec/Werkzeug-0.9.4.tar.gz
Collecting itsdangerous==0.23 (from WebUI)
Using cached https://files.pythonhosted.org/packages/c1/6c/ceefb52b2a5d7d1f2b1b407a96892182161904478b9ef86049e7b8162cb6/itsdangerous-0.23.tar.gz
Collecting pyside==1.2.1 (from WebUI)
Using cached https://files.pythonhosted.org/packages/f1/32/63872fdc1d9e0de5aa0b05b9d1a17d868851c619cdc6998dd9d853556f1b/PySide-1.2.1.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:UsersRBCABR~1AppDataLocalTemppip-install-546zsn2spysidesetup.py", line 82, in <module>
from utils import rmtree
File "C:UsersRBCABR~1AppDataLocalTemppip-install-546zsn2spysideutils.py", line 10, in <module>
import popenasync
File "C:UsersRBCABR~1AppDataLocalTemppip-install-546zsn2spysidepopenasync.py", line 26, in <module>
if subprocess.mswindows:
AttributeError: module 'subprocess' has no attribute 'mswindows'


can someone explain the reason for this error and how to fix this?










share|improve this question























  • What is your python version? If it is 3.5, then renaming mswindows to_mswindows should do the trick

    – Palash Ahuja
    Nov 23 '18 at 1:52











  • 3.6.0 anyway where should I edit that?

    – Reub
    Nov 23 '18 at 2:00











  • you might have to download pyside and then change the line 26 inside popenasync.py, and from the folder run python setup.py install.

    – Palash Ahuja
    Nov 23 '18 at 2:03











  • Also, you may want to check out this answer - stackoverflow.com/questions/47362751/…

    – Palash Ahuja
    Nov 23 '18 at 2:04














0












0








0








I am trying to install WebUI using pip install WebUI and I got this error



Collecting WebUI
Using cached https://files.pythonhosted.org/packages/45/06/5f4ddb9a5d4acf9600be3a794bee670f778e43bbcd648e3f58cc8326cd6a/WebUI-0.1.7.zip
Collecting Flask==0.10.1 (from WebUI)
Using cached https://files.pythonhosted.org/packages/db/9c/149ba60c47d107f85fe52564133348458f093dd5e6b57a5b60ab9ac517bb/Flask-0.10.1.tar.gz
Collecting Jinja2==2.7.1 (from WebUI)
Using cached https://files.pythonhosted.org/packages/47/83/679b5592feb54e948d6599edf5dac61d2991778c3ecbef6b8041663f4740/Jinja2-2.7.1.tar.gz
Collecting MarkupSafe==0.18 (from WebUI)
Using cached https://files.pythonhosted.org/packages/98/cf/197c3b0f73224b84eb419a967f87565bcc0b0c1147012397e6bd2d45e253/MarkupSafe-0.18.tar.gz
Collecting Werkzeug==0.9.4 (from WebUI)
Using cached https://files.pythonhosted.org/packages/d8/5e/8abc95630f9c4248edffed30592468f884e845ba656a959a12e452fafcec/Werkzeug-0.9.4.tar.gz
Collecting itsdangerous==0.23 (from WebUI)
Using cached https://files.pythonhosted.org/packages/c1/6c/ceefb52b2a5d7d1f2b1b407a96892182161904478b9ef86049e7b8162cb6/itsdangerous-0.23.tar.gz
Collecting pyside==1.2.1 (from WebUI)
Using cached https://files.pythonhosted.org/packages/f1/32/63872fdc1d9e0de5aa0b05b9d1a17d868851c619cdc6998dd9d853556f1b/PySide-1.2.1.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:UsersRBCABR~1AppDataLocalTemppip-install-546zsn2spysidesetup.py", line 82, in <module>
from utils import rmtree
File "C:UsersRBCABR~1AppDataLocalTemppip-install-546zsn2spysideutils.py", line 10, in <module>
import popenasync
File "C:UsersRBCABR~1AppDataLocalTemppip-install-546zsn2spysidepopenasync.py", line 26, in <module>
if subprocess.mswindows:
AttributeError: module 'subprocess' has no attribute 'mswindows'


can someone explain the reason for this error and how to fix this?










share|improve this question














I am trying to install WebUI using pip install WebUI and I got this error



Collecting WebUI
Using cached https://files.pythonhosted.org/packages/45/06/5f4ddb9a5d4acf9600be3a794bee670f778e43bbcd648e3f58cc8326cd6a/WebUI-0.1.7.zip
Collecting Flask==0.10.1 (from WebUI)
Using cached https://files.pythonhosted.org/packages/db/9c/149ba60c47d107f85fe52564133348458f093dd5e6b57a5b60ab9ac517bb/Flask-0.10.1.tar.gz
Collecting Jinja2==2.7.1 (from WebUI)
Using cached https://files.pythonhosted.org/packages/47/83/679b5592feb54e948d6599edf5dac61d2991778c3ecbef6b8041663f4740/Jinja2-2.7.1.tar.gz
Collecting MarkupSafe==0.18 (from WebUI)
Using cached https://files.pythonhosted.org/packages/98/cf/197c3b0f73224b84eb419a967f87565bcc0b0c1147012397e6bd2d45e253/MarkupSafe-0.18.tar.gz
Collecting Werkzeug==0.9.4 (from WebUI)
Using cached https://files.pythonhosted.org/packages/d8/5e/8abc95630f9c4248edffed30592468f884e845ba656a959a12e452fafcec/Werkzeug-0.9.4.tar.gz
Collecting itsdangerous==0.23 (from WebUI)
Using cached https://files.pythonhosted.org/packages/c1/6c/ceefb52b2a5d7d1f2b1b407a96892182161904478b9ef86049e7b8162cb6/itsdangerous-0.23.tar.gz
Collecting pyside==1.2.1 (from WebUI)
Using cached https://files.pythonhosted.org/packages/f1/32/63872fdc1d9e0de5aa0b05b9d1a17d868851c619cdc6998dd9d853556f1b/PySide-1.2.1.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:UsersRBCABR~1AppDataLocalTemppip-install-546zsn2spysidesetup.py", line 82, in <module>
from utils import rmtree
File "C:UsersRBCABR~1AppDataLocalTemppip-install-546zsn2spysideutils.py", line 10, in <module>
import popenasync
File "C:UsersRBCABR~1AppDataLocalTemppip-install-546zsn2spysidepopenasync.py", line 26, in <module>
if subprocess.mswindows:
AttributeError: module 'subprocess' has no attribute 'mswindows'


can someone explain the reason for this error and how to fix this?







python






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 23 '18 at 1:49









ReubReub

146




146













  • What is your python version? If it is 3.5, then renaming mswindows to_mswindows should do the trick

    – Palash Ahuja
    Nov 23 '18 at 1:52











  • 3.6.0 anyway where should I edit that?

    – Reub
    Nov 23 '18 at 2:00











  • you might have to download pyside and then change the line 26 inside popenasync.py, and from the folder run python setup.py install.

    – Palash Ahuja
    Nov 23 '18 at 2:03











  • Also, you may want to check out this answer - stackoverflow.com/questions/47362751/…

    – Palash Ahuja
    Nov 23 '18 at 2:04



















  • What is your python version? If it is 3.5, then renaming mswindows to_mswindows should do the trick

    – Palash Ahuja
    Nov 23 '18 at 1:52











  • 3.6.0 anyway where should I edit that?

    – Reub
    Nov 23 '18 at 2:00











  • you might have to download pyside and then change the line 26 inside popenasync.py, and from the folder run python setup.py install.

    – Palash Ahuja
    Nov 23 '18 at 2:03











  • Also, you may want to check out this answer - stackoverflow.com/questions/47362751/…

    – Palash Ahuja
    Nov 23 '18 at 2:04

















What is your python version? If it is 3.5, then renaming mswindows to_mswindows should do the trick

– Palash Ahuja
Nov 23 '18 at 1:52





What is your python version? If it is 3.5, then renaming mswindows to_mswindows should do the trick

– Palash Ahuja
Nov 23 '18 at 1:52













3.6.0 anyway where should I edit that?

– Reub
Nov 23 '18 at 2:00





3.6.0 anyway where should I edit that?

– Reub
Nov 23 '18 at 2:00













you might have to download pyside and then change the line 26 inside popenasync.py, and from the folder run python setup.py install.

– Palash Ahuja
Nov 23 '18 at 2:03





you might have to download pyside and then change the line 26 inside popenasync.py, and from the folder run python setup.py install.

– Palash Ahuja
Nov 23 '18 at 2:03













Also, you may want to check out this answer - stackoverflow.com/questions/47362751/…

– Palash Ahuja
Nov 23 '18 at 2:04





Also, you may want to check out this answer - stackoverflow.com/questions/47362751/…

– Palash Ahuja
Nov 23 '18 at 2:04












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53439783%2fattribute-error-on-python-webui-installation%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53439783%2fattribute-error-on-python-webui-installation%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Wiesbaden

Marschland

Dieringhausen