Python pypy3 packages issue; Requirement already satisfied vs. ImportError: No module named 'blah'
up vote
0
down vote
favorite
Note that I'm using my office system which is connected to a larger network and some of the paths mentioned in the following are shared between all users.
Summary: I am trying to run a python code. when I run it, it returns an ImportError: No module named scipy
error, and when I try to install it, it returns and error saying that it is already installed with this message: Requirement already satisfied
Details:
I am trying to run a python code with a Makefile which in the header has this line:
python=PYTHONPATH=. pypy3
and these are the results for running which on my system:
[amir@lin physlr]$ which python3
/gsc/btl/linuxbrew/bin/python3
[amir@lin physlr]$ which pypy3
/gsc/btl/linuxbrew/bin/pypy3
So all of them are from linuxbrew. Now, When I run the code using the Makefile, It says:
ImportError: No module named 'scipy'
make: *** [Makefile:317: f1chr4.physlr.tsv] Error 1
make: *** Deleting file 'f1chr4.physlr.tsv'
So I tried to install scipy using pip3 and here is the result:
[amir@lin physlr]$ pip3 install --user scipy
Requirement already satisfied: scipy in /home/aafshinfard/.local/lib/python3.7/site-packages (1.1.0)
Requirement already satisfied: numpy>=1.8.2 in /home/aafshinfard/.local/lib/python3.7/site-packages (from scipy) (1.15.4)
and yes, when I try pip3 show scipt it says:
[amir@lin physlr]$ pip3 show scipy
Name: scipy
Version: 1.1.0
Summary: SciPy: Scientific Library for Python
Home-page: https://www.scipy.org
Author: None
Author-email: None
License: BSD
Location: /home/amir/.local/lib/python3.7/site-packages
Requires: numpy
Required-by: scikit-learn
which is different from /gsc/btl/linuxbrew/
...
It seems I need to install the package with pip_pypy3
as when I try
pip_pypy3 show scipy
it returns nothing which means it is not installed. But for that I need some permission which I cannot obtain now.
Does anybody have suggestion or solutions?
python scipy pypy linuxbrew
add a comment |
up vote
0
down vote
favorite
Note that I'm using my office system which is connected to a larger network and some of the paths mentioned in the following are shared between all users.
Summary: I am trying to run a python code. when I run it, it returns an ImportError: No module named scipy
error, and when I try to install it, it returns and error saying that it is already installed with this message: Requirement already satisfied
Details:
I am trying to run a python code with a Makefile which in the header has this line:
python=PYTHONPATH=. pypy3
and these are the results for running which on my system:
[amir@lin physlr]$ which python3
/gsc/btl/linuxbrew/bin/python3
[amir@lin physlr]$ which pypy3
/gsc/btl/linuxbrew/bin/pypy3
So all of them are from linuxbrew. Now, When I run the code using the Makefile, It says:
ImportError: No module named 'scipy'
make: *** [Makefile:317: f1chr4.physlr.tsv] Error 1
make: *** Deleting file 'f1chr4.physlr.tsv'
So I tried to install scipy using pip3 and here is the result:
[amir@lin physlr]$ pip3 install --user scipy
Requirement already satisfied: scipy in /home/aafshinfard/.local/lib/python3.7/site-packages (1.1.0)
Requirement already satisfied: numpy>=1.8.2 in /home/aafshinfard/.local/lib/python3.7/site-packages (from scipy) (1.15.4)
and yes, when I try pip3 show scipt it says:
[amir@lin physlr]$ pip3 show scipy
Name: scipy
Version: 1.1.0
Summary: SciPy: Scientific Library for Python
Home-page: https://www.scipy.org
Author: None
Author-email: None
License: BSD
Location: /home/amir/.local/lib/python3.7/site-packages
Requires: numpy
Required-by: scikit-learn
which is different from /gsc/btl/linuxbrew/
...
It seems I need to install the package with pip_pypy3
as when I try
pip_pypy3 show scipy
it returns nothing which means it is not installed. But for that I need some permission which I cannot obtain now.
Does anybody have suggestion or solutions?
python scipy pypy linuxbrew
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Note that I'm using my office system which is connected to a larger network and some of the paths mentioned in the following are shared between all users.
Summary: I am trying to run a python code. when I run it, it returns an ImportError: No module named scipy
error, and when I try to install it, it returns and error saying that it is already installed with this message: Requirement already satisfied
Details:
I am trying to run a python code with a Makefile which in the header has this line:
python=PYTHONPATH=. pypy3
and these are the results for running which on my system:
[amir@lin physlr]$ which python3
/gsc/btl/linuxbrew/bin/python3
[amir@lin physlr]$ which pypy3
/gsc/btl/linuxbrew/bin/pypy3
So all of them are from linuxbrew. Now, When I run the code using the Makefile, It says:
ImportError: No module named 'scipy'
make: *** [Makefile:317: f1chr4.physlr.tsv] Error 1
make: *** Deleting file 'f1chr4.physlr.tsv'
So I tried to install scipy using pip3 and here is the result:
[amir@lin physlr]$ pip3 install --user scipy
Requirement already satisfied: scipy in /home/aafshinfard/.local/lib/python3.7/site-packages (1.1.0)
Requirement already satisfied: numpy>=1.8.2 in /home/aafshinfard/.local/lib/python3.7/site-packages (from scipy) (1.15.4)
and yes, when I try pip3 show scipt it says:
[amir@lin physlr]$ pip3 show scipy
Name: scipy
Version: 1.1.0
Summary: SciPy: Scientific Library for Python
Home-page: https://www.scipy.org
Author: None
Author-email: None
License: BSD
Location: /home/amir/.local/lib/python3.7/site-packages
Requires: numpy
Required-by: scikit-learn
which is different from /gsc/btl/linuxbrew/
...
It seems I need to install the package with pip_pypy3
as when I try
pip_pypy3 show scipy
it returns nothing which means it is not installed. But for that I need some permission which I cannot obtain now.
Does anybody have suggestion or solutions?
python scipy pypy linuxbrew
Note that I'm using my office system which is connected to a larger network and some of the paths mentioned in the following are shared between all users.
Summary: I am trying to run a python code. when I run it, it returns an ImportError: No module named scipy
error, and when I try to install it, it returns and error saying that it is already installed with this message: Requirement already satisfied
Details:
I am trying to run a python code with a Makefile which in the header has this line:
python=PYTHONPATH=. pypy3
and these are the results for running which on my system:
[amir@lin physlr]$ which python3
/gsc/btl/linuxbrew/bin/python3
[amir@lin physlr]$ which pypy3
/gsc/btl/linuxbrew/bin/pypy3
So all of them are from linuxbrew. Now, When I run the code using the Makefile, It says:
ImportError: No module named 'scipy'
make: *** [Makefile:317: f1chr4.physlr.tsv] Error 1
make: *** Deleting file 'f1chr4.physlr.tsv'
So I tried to install scipy using pip3 and here is the result:
[amir@lin physlr]$ pip3 install --user scipy
Requirement already satisfied: scipy in /home/aafshinfard/.local/lib/python3.7/site-packages (1.1.0)
Requirement already satisfied: numpy>=1.8.2 in /home/aafshinfard/.local/lib/python3.7/site-packages (from scipy) (1.15.4)
and yes, when I try pip3 show scipt it says:
[amir@lin physlr]$ pip3 show scipy
Name: scipy
Version: 1.1.0
Summary: SciPy: Scientific Library for Python
Home-page: https://www.scipy.org
Author: None
Author-email: None
License: BSD
Location: /home/amir/.local/lib/python3.7/site-packages
Requires: numpy
Required-by: scikit-learn
which is different from /gsc/btl/linuxbrew/
...
It seems I need to install the package with pip_pypy3
as when I try
pip_pypy3 show scipy
it returns nothing which means it is not installed. But for that I need some permission which I cannot obtain now.
Does anybody have suggestion or solutions?
python scipy pypy linuxbrew
python scipy pypy linuxbrew
asked Nov 22 at 3:51
ameerosein
18912
18912
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53423622%2fpython-pypy3-packages-issue-requirement-already-satisfied-vs-importerror-no-m%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