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?










share|improve this question


























    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?










    share|improve this question
























      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?










      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 22 at 3:51









      ameerosein

      18912




      18912





























          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',
          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%2f53423622%2fpython-pypy3-packages-issue-requirement-already-satisfied-vs-importerror-no-m%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          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.





          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.




          draft saved


          draft discarded














          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





















































          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

          Trompette piccolo

          Slow SSRS Report in dynamic grouping and multiple parameters

          Simon Yates (cyclisme)