Installed Flask, but get “ImportError: No module named flask”. What could be the reason?
At empty CentOS I do this (following tutorial https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-centos-7):
sudo yum install python-pip python-devel gcc nginx
sudo pip install virtualenv
mkdir ~/myproject
cd ~/myproject
virtualenv myprojectenv
source myprojectenv/bin/activate
pip install gunicorn flask
pip list
pip show flask
nano ~/myproject/myproject.py
python myproject.py
Then I get:
Traceback (most recent call last):
File "myproject.py", line 1, in <module>
from flask import Flask
ModuleNotFoundError: No module named 'flask'
What could be them problem with it?
python pip
add a comment |
At empty CentOS I do this (following tutorial https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-centos-7):
sudo yum install python-pip python-devel gcc nginx
sudo pip install virtualenv
mkdir ~/myproject
cd ~/myproject
virtualenv myprojectenv
source myprojectenv/bin/activate
pip install gunicorn flask
pip list
pip show flask
nano ~/myproject/myproject.py
python myproject.py
Then I get:
Traceback (most recent call last):
File "myproject.py", line 1, in <module>
from flask import Flask
ModuleNotFoundError: No module named 'flask'
What could be them problem with it?
python pip
4
most common is your programm runs on python 3.X but pip install on python 2.X runpip3 install flask
and retry
– Fabian
Nov 21 '18 at 13:11
That helped, thank you!
– chacid
Nov 21 '18 at 14:27
add a comment |
At empty CentOS I do this (following tutorial https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-centos-7):
sudo yum install python-pip python-devel gcc nginx
sudo pip install virtualenv
mkdir ~/myproject
cd ~/myproject
virtualenv myprojectenv
source myprojectenv/bin/activate
pip install gunicorn flask
pip list
pip show flask
nano ~/myproject/myproject.py
python myproject.py
Then I get:
Traceback (most recent call last):
File "myproject.py", line 1, in <module>
from flask import Flask
ModuleNotFoundError: No module named 'flask'
What could be them problem with it?
python pip
At empty CentOS I do this (following tutorial https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-centos-7):
sudo yum install python-pip python-devel gcc nginx
sudo pip install virtualenv
mkdir ~/myproject
cd ~/myproject
virtualenv myprojectenv
source myprojectenv/bin/activate
pip install gunicorn flask
pip list
pip show flask
nano ~/myproject/myproject.py
python myproject.py
Then I get:
Traceback (most recent call last):
File "myproject.py", line 1, in <module>
from flask import Flask
ModuleNotFoundError: No module named 'flask'
What could be them problem with it?
python pip
python pip
edited Nov 21 '18 at 13:25
davidism
63.6k12166184
63.6k12166184
asked Nov 21 '18 at 13:05
chacidchacid
207
207
4
most common is your programm runs on python 3.X but pip install on python 2.X runpip3 install flask
and retry
– Fabian
Nov 21 '18 at 13:11
That helped, thank you!
– chacid
Nov 21 '18 at 14:27
add a comment |
4
most common is your programm runs on python 3.X but pip install on python 2.X runpip3 install flask
and retry
– Fabian
Nov 21 '18 at 13:11
That helped, thank you!
– chacid
Nov 21 '18 at 14:27
4
4
most common is your programm runs on python 3.X but pip install on python 2.X run
pip3 install flask
and retry– Fabian
Nov 21 '18 at 13:11
most common is your programm runs on python 3.X but pip install on python 2.X run
pip3 install flask
and retry– Fabian
Nov 21 '18 at 13:11
That helped, thank you!
– chacid
Nov 21 '18 at 14:27
That helped, thank you!
– chacid
Nov 21 '18 at 14:27
add a comment |
1 Answer
1
active
oldest
votes
Did your prompt change ? Something like:
(myprojectenv)user@host:~/myproject$
If it did change, run python command and see to what will it evaluate:
Python 3.6.2 (v3.6.2:5fd33b5, Jul 8 2017, 04:14:34) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
CTRL+Z to exit
Again, your prompt should include (myprojectenv) in front when running your script:
(myprojectenv)user@host:~/myproject$ python myproject.py
add a comment |
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
});
}
});
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53412705%2finstalled-flask-but-get-importerror-no-module-named-flask-what-could-be-the%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Did your prompt change ? Something like:
(myprojectenv)user@host:~/myproject$
If it did change, run python command and see to what will it evaluate:
Python 3.6.2 (v3.6.2:5fd33b5, Jul 8 2017, 04:14:34) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
CTRL+Z to exit
Again, your prompt should include (myprojectenv) in front when running your script:
(myprojectenv)user@host:~/myproject$ python myproject.py
add a comment |
Did your prompt change ? Something like:
(myprojectenv)user@host:~/myproject$
If it did change, run python command and see to what will it evaluate:
Python 3.6.2 (v3.6.2:5fd33b5, Jul 8 2017, 04:14:34) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
CTRL+Z to exit
Again, your prompt should include (myprojectenv) in front when running your script:
(myprojectenv)user@host:~/myproject$ python myproject.py
add a comment |
Did your prompt change ? Something like:
(myprojectenv)user@host:~/myproject$
If it did change, run python command and see to what will it evaluate:
Python 3.6.2 (v3.6.2:5fd33b5, Jul 8 2017, 04:14:34) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
CTRL+Z to exit
Again, your prompt should include (myprojectenv) in front when running your script:
(myprojectenv)user@host:~/myproject$ python myproject.py
Did your prompt change ? Something like:
(myprojectenv)user@host:~/myproject$
If it did change, run python command and see to what will it evaluate:
Python 3.6.2 (v3.6.2:5fd33b5, Jul 8 2017, 04:14:34) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
CTRL+Z to exit
Again, your prompt should include (myprojectenv) in front when running your script:
(myprojectenv)user@host:~/myproject$ python myproject.py
answered Nov 21 '18 at 13:36


Dinko PeharDinko Pehar
1,4513424
1,4513424
add a comment |
add a comment |
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.
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53412705%2finstalled-flask-but-get-importerror-no-module-named-flask-what-could-be-the%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
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
4
most common is your programm runs on python 3.X but pip install on python 2.X run
pip3 install flask
and retry– Fabian
Nov 21 '18 at 13:11
That helped, thank you!
– chacid
Nov 21 '18 at 14:27