Numpy installed only for python3.5, not for python3.6

Clash Royale CLAN TAG#URR8PPP up vote
1
down vote
favorite
I have both python3.5 and python3.6 in my computer. When I try to import python in numpy3.6, I get an error. When I try to install numpy through sudo pip3 install numpy, I get the message Requirement already satisfied: numpy in /home/user/.local/lib/python3.5/site-packages. How do I install numpy for python 3.6?
That's the exception I get when importing numpy:
Python 3.6.3 (default, Oct 6 2017, 08:44:35) [GCC 6.3.0 20170406] on linux Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
Traceback (most recent call last): File "<stdin>", line 1, in <module> ModuleNotFoundError: No module named 'numpy' Error in sys.excepthook: Traceback (most recent call last): File "/usr/lib/python3/dist-packages/apport_python_hook.py", line 63, in apport_excepthook
from apport.fileutils import likely_packaged, get_recent_crashes File "/usr/lib/python3/dist-packages/apport/__init__.py", line 5, in <module>
from apport.report import Report File "/usr/lib/python3/dist-packages/apport/report.py", line 30, in <module>
import apport.fileutils File "/usr/lib/python3/dist-packages/apport/fileutils.py", line 23, in <module>
from apport.packaging_impl import impl as packaging File "/usr/lib/python3/dist-packages/apport/packaging_impl.py", line 24, in <module>
import apt File "/usr/lib/python3/dist-packages/apt/__init__.py", line 23, in <module>
import apt_pkg ModuleNotFoundError: No module named 'apt_pkg'
Original exception was: Traceback (most recent call last): File "<stdin>", line 1, in <module> ModuleNotFoundError: No module named 'numpy'
>>>
Thanks
python python3 numpy
add a comment |Â
up vote
1
down vote
favorite
I have both python3.5 and python3.6 in my computer. When I try to import python in numpy3.6, I get an error. When I try to install numpy through sudo pip3 install numpy, I get the message Requirement already satisfied: numpy in /home/user/.local/lib/python3.5/site-packages. How do I install numpy for python 3.6?
That's the exception I get when importing numpy:
Python 3.6.3 (default, Oct 6 2017, 08:44:35) [GCC 6.3.0 20170406] on linux Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
Traceback (most recent call last): File "<stdin>", line 1, in <module> ModuleNotFoundError: No module named 'numpy' Error in sys.excepthook: Traceback (most recent call last): File "/usr/lib/python3/dist-packages/apport_python_hook.py", line 63, in apport_excepthook
from apport.fileutils import likely_packaged, get_recent_crashes File "/usr/lib/python3/dist-packages/apport/__init__.py", line 5, in <module>
from apport.report import Report File "/usr/lib/python3/dist-packages/apport/report.py", line 30, in <module>
import apport.fileutils File "/usr/lib/python3/dist-packages/apport/fileutils.py", line 23, in <module>
from apport.packaging_impl import impl as packaging File "/usr/lib/python3/dist-packages/apport/packaging_impl.py", line 24, in <module>
import apt File "/usr/lib/python3/dist-packages/apt/__init__.py", line 23, in <module>
import apt_pkg ModuleNotFoundError: No module named 'apt_pkg'
Original exception was: Traceback (most recent call last): File "<stdin>", line 1, in <module> ModuleNotFoundError: No module named 'numpy'
>>>
Thanks
python python3 numpy
Related: askubuntu.com/q/1035826/250300
â Melebius
May 15 at 6:26
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have both python3.5 and python3.6 in my computer. When I try to import python in numpy3.6, I get an error. When I try to install numpy through sudo pip3 install numpy, I get the message Requirement already satisfied: numpy in /home/user/.local/lib/python3.5/site-packages. How do I install numpy for python 3.6?
That's the exception I get when importing numpy:
Python 3.6.3 (default, Oct 6 2017, 08:44:35) [GCC 6.3.0 20170406] on linux Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
Traceback (most recent call last): File "<stdin>", line 1, in <module> ModuleNotFoundError: No module named 'numpy' Error in sys.excepthook: Traceback (most recent call last): File "/usr/lib/python3/dist-packages/apport_python_hook.py", line 63, in apport_excepthook
from apport.fileutils import likely_packaged, get_recent_crashes File "/usr/lib/python3/dist-packages/apport/__init__.py", line 5, in <module>
from apport.report import Report File "/usr/lib/python3/dist-packages/apport/report.py", line 30, in <module>
import apport.fileutils File "/usr/lib/python3/dist-packages/apport/fileutils.py", line 23, in <module>
from apport.packaging_impl import impl as packaging File "/usr/lib/python3/dist-packages/apport/packaging_impl.py", line 24, in <module>
import apt File "/usr/lib/python3/dist-packages/apt/__init__.py", line 23, in <module>
import apt_pkg ModuleNotFoundError: No module named 'apt_pkg'
Original exception was: Traceback (most recent call last): File "<stdin>", line 1, in <module> ModuleNotFoundError: No module named 'numpy'
>>>
Thanks
python python3 numpy
I have both python3.5 and python3.6 in my computer. When I try to import python in numpy3.6, I get an error. When I try to install numpy through sudo pip3 install numpy, I get the message Requirement already satisfied: numpy in /home/user/.local/lib/python3.5/site-packages. How do I install numpy for python 3.6?
That's the exception I get when importing numpy:
Python 3.6.3 (default, Oct 6 2017, 08:44:35) [GCC 6.3.0 20170406] on linux Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
Traceback (most recent call last): File "<stdin>", line 1, in <module> ModuleNotFoundError: No module named 'numpy' Error in sys.excepthook: Traceback (most recent call last): File "/usr/lib/python3/dist-packages/apport_python_hook.py", line 63, in apport_excepthook
from apport.fileutils import likely_packaged, get_recent_crashes File "/usr/lib/python3/dist-packages/apport/__init__.py", line 5, in <module>
from apport.report import Report File "/usr/lib/python3/dist-packages/apport/report.py", line 30, in <module>
import apport.fileutils File "/usr/lib/python3/dist-packages/apport/fileutils.py", line 23, in <module>
from apport.packaging_impl import impl as packaging File "/usr/lib/python3/dist-packages/apport/packaging_impl.py", line 24, in <module>
import apt File "/usr/lib/python3/dist-packages/apt/__init__.py", line 23, in <module>
import apt_pkg ModuleNotFoundError: No module named 'apt_pkg'
Original exception was: Traceback (most recent call last): File "<stdin>", line 1, in <module> ModuleNotFoundError: No module named 'numpy'
>>>
Thanks
python python3 numpy
edited May 15 at 6:19
asked May 14 at 21:13
user1767774
1106
1106
Related: askubuntu.com/q/1035826/250300
â Melebius
May 15 at 6:26
add a comment |Â
Related: askubuntu.com/q/1035826/250300
â Melebius
May 15 at 6:26
Related: askubuntu.com/q/1035826/250300
â Melebius
May 15 at 6:26
Related: askubuntu.com/q/1035826/250300
â Melebius
May 15 at 6:26
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
make sure pip is installed with:
wget https://bootstrap.pypa.io/get-pip.py
and:
sudo python3.6 get-pip.py
and then you can install numpy with:
sudo python3.6 -m pip install numpy
I have followed your answer, but when writing "python3.6 -m pip install numpy" I get the output: Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (1.12.1). I added to the question the full exception I get when importing numpy in python3.6.
â user1767774
May 15 at 6:15
1
solved after adding --upgrade to that command. Thanks!
â user1767774
May 15 at 6:33
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
make sure pip is installed with:
wget https://bootstrap.pypa.io/get-pip.py
and:
sudo python3.6 get-pip.py
and then you can install numpy with:
sudo python3.6 -m pip install numpy
I have followed your answer, but when writing "python3.6 -m pip install numpy" I get the output: Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (1.12.1). I added to the question the full exception I get when importing numpy in python3.6.
â user1767774
May 15 at 6:15
1
solved after adding --upgrade to that command. Thanks!
â user1767774
May 15 at 6:33
add a comment |Â
up vote
1
down vote
accepted
make sure pip is installed with:
wget https://bootstrap.pypa.io/get-pip.py
and:
sudo python3.6 get-pip.py
and then you can install numpy with:
sudo python3.6 -m pip install numpy
I have followed your answer, but when writing "python3.6 -m pip install numpy" I get the output: Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (1.12.1). I added to the question the full exception I get when importing numpy in python3.6.
â user1767774
May 15 at 6:15
1
solved after adding --upgrade to that command. Thanks!
â user1767774
May 15 at 6:33
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
make sure pip is installed with:
wget https://bootstrap.pypa.io/get-pip.py
and:
sudo python3.6 get-pip.py
and then you can install numpy with:
sudo python3.6 -m pip install numpy
make sure pip is installed with:
wget https://bootstrap.pypa.io/get-pip.py
and:
sudo python3.6 get-pip.py
and then you can install numpy with:
sudo python3.6 -m pip install numpy
edited Jun 13 at 3:32
answered May 15 at 1:24
jackw11111
33317
33317
I have followed your answer, but when writing "python3.6 -m pip install numpy" I get the output: Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (1.12.1). I added to the question the full exception I get when importing numpy in python3.6.
â user1767774
May 15 at 6:15
1
solved after adding --upgrade to that command. Thanks!
â user1767774
May 15 at 6:33
add a comment |Â
I have followed your answer, but when writing "python3.6 -m pip install numpy" I get the output: Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (1.12.1). I added to the question the full exception I get when importing numpy in python3.6.
â user1767774
May 15 at 6:15
1
solved after adding --upgrade to that command. Thanks!
â user1767774
May 15 at 6:33
I have followed your answer, but when writing "python3.6 -m pip install numpy" I get the output: Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (1.12.1). I added to the question the full exception I get when importing numpy in python3.6.
â user1767774
May 15 at 6:15
I have followed your answer, but when writing "python3.6 -m pip install numpy" I get the output: Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (1.12.1). I added to the question the full exception I get when importing numpy in python3.6.
â user1767774
May 15 at 6:15
1
1
solved after adding --upgrade to that command. Thanks!
â user1767774
May 15 at 6:33
solved after adding --upgrade to that command. Thanks!
â user1767774
May 15 at 6:33
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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%2faskubuntu.com%2fquestions%2f1036277%2fnumpy-installed-only-for-python3-5-not-for-python3-6%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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
Related: askubuntu.com/q/1035826/250300
â Melebius
May 15 at 6:26