How to install python and ase in linux without sudoer identity?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
-1
down vote

favorite












How can I install the atomic simulation environment in my working directory? I am a normal user so I cannot use the "sudo" command.
enter image description here



Here is the guide of ASE:



enter image description here



Can someone help me go through these procedures?










share|improve this question

















  • 1




    You can install ase without sudo pip install ase, but you cannot install python-pip without sudo.
    – Terrance
    Mar 22 at 16:03










  • Ask an administrator to install the necessary program packages for you :-)
    – sudodus
    Mar 22 at 16:20










  • Do you have access to pip install --user ase? If you do, then use that; if you do not and pip shows as a nonexistent command, you'll have to talk to your sysadmin to get the proper packages made available.
    – Thomas Ward♦
    Mar 22 at 17:03















up vote
-1
down vote

favorite












How can I install the atomic simulation environment in my working directory? I am a normal user so I cannot use the "sudo" command.
enter image description here



Here is the guide of ASE:



enter image description here



Can someone help me go through these procedures?










share|improve this question

















  • 1




    You can install ase without sudo pip install ase, but you cannot install python-pip without sudo.
    – Terrance
    Mar 22 at 16:03










  • Ask an administrator to install the necessary program packages for you :-)
    – sudodus
    Mar 22 at 16:20










  • Do you have access to pip install --user ase? If you do, then use that; if you do not and pip shows as a nonexistent command, you'll have to talk to your sysadmin to get the proper packages made available.
    – Thomas Ward♦
    Mar 22 at 17:03













up vote
-1
down vote

favorite









up vote
-1
down vote

favorite











How can I install the atomic simulation environment in my working directory? I am a normal user so I cannot use the "sudo" command.
enter image description here



Here is the guide of ASE:



enter image description here



Can someone help me go through these procedures?










share|improve this question













How can I install the atomic simulation environment in my working directory? I am a normal user so I cannot use the "sudo" command.
enter image description here



Here is the guide of ASE:



enter image description here



Can someone help me go through these procedures?







python linux-headers






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 22 at 15:59









Jack

1092




1092







  • 1




    You can install ase without sudo pip install ase, but you cannot install python-pip without sudo.
    – Terrance
    Mar 22 at 16:03










  • Ask an administrator to install the necessary program packages for you :-)
    – sudodus
    Mar 22 at 16:20










  • Do you have access to pip install --user ase? If you do, then use that; if you do not and pip shows as a nonexistent command, you'll have to talk to your sysadmin to get the proper packages made available.
    – Thomas Ward♦
    Mar 22 at 17:03













  • 1




    You can install ase without sudo pip install ase, but you cannot install python-pip without sudo.
    – Terrance
    Mar 22 at 16:03










  • Ask an administrator to install the necessary program packages for you :-)
    – sudodus
    Mar 22 at 16:20










  • Do you have access to pip install --user ase? If you do, then use that; if you do not and pip shows as a nonexistent command, you'll have to talk to your sysadmin to get the proper packages made available.
    – Thomas Ward♦
    Mar 22 at 17:03








1




1




You can install ase without sudo pip install ase, but you cannot install python-pip without sudo.
– Terrance
Mar 22 at 16:03




You can install ase without sudo pip install ase, but you cannot install python-pip without sudo.
– Terrance
Mar 22 at 16:03












Ask an administrator to install the necessary program packages for you :-)
– sudodus
Mar 22 at 16:20




Ask an administrator to install the necessary program packages for you :-)
– sudodus
Mar 22 at 16:20












Do you have access to pip install --user ase? If you do, then use that; if you do not and pip shows as a nonexistent command, you'll have to talk to your sysadmin to get the proper packages made available.
– Thomas Ward♦
Mar 22 at 17:03





Do you have access to pip install --user ase? If you do, then use that; if you do not and pip shows as a nonexistent command, you'll have to talk to your sysadmin to get the proper packages made available.
– Thomas Ward♦
Mar 22 at 17:03











2 Answers
2






active

oldest

votes

















up vote
1
down vote













Here is a tutorial to do this. Install Python, Numpy, and Matplotlib in your home Linux directory






share|improve this answer



























    up vote
    0
    down vote













    Assuming you have python and pip already installed, use virtualenv to install packages locally. This works well for machines that have apps that require more than one version of python and/or packages (like an automated testing server).



    If you don't have python, or if you need a specific version, download python from Python and build it for your use only. Just use ./configure --prefix=/home/yourusername/python to tell it to install in your home directory as your user instead of in /usr/local. Use whatever install directory you wish that you have permission to.






    share|improve this answer






















      Your Answer







      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "89"
      ;
      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: false,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













       

      draft saved


      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1018295%2fhow-to-install-python-and-ase-in-linux-without-sudoer-identity%23new-answer', 'question_page');

      );

      Post as a guest






























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes








      up vote
      1
      down vote













      Here is a tutorial to do this. Install Python, Numpy, and Matplotlib in your home Linux directory






      share|improve this answer
























        up vote
        1
        down vote













        Here is a tutorial to do this. Install Python, Numpy, and Matplotlib in your home Linux directory






        share|improve this answer






















          up vote
          1
          down vote










          up vote
          1
          down vote









          Here is a tutorial to do this. Install Python, Numpy, and Matplotlib in your home Linux directory






          share|improve this answer












          Here is a tutorial to do this. Install Python, Numpy, and Matplotlib in your home Linux directory







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 23 at 1:36









          Jack

          1092




          1092






















              up vote
              0
              down vote













              Assuming you have python and pip already installed, use virtualenv to install packages locally. This works well for machines that have apps that require more than one version of python and/or packages (like an automated testing server).



              If you don't have python, or if you need a specific version, download python from Python and build it for your use only. Just use ./configure --prefix=/home/yourusername/python to tell it to install in your home directory as your user instead of in /usr/local. Use whatever install directory you wish that you have permission to.






              share|improve this answer


























                up vote
                0
                down vote













                Assuming you have python and pip already installed, use virtualenv to install packages locally. This works well for machines that have apps that require more than one version of python and/or packages (like an automated testing server).



                If you don't have python, or if you need a specific version, download python from Python and build it for your use only. Just use ./configure --prefix=/home/yourusername/python to tell it to install in your home directory as your user instead of in /usr/local. Use whatever install directory you wish that you have permission to.






                share|improve this answer
























                  up vote
                  0
                  down vote










                  up vote
                  0
                  down vote









                  Assuming you have python and pip already installed, use virtualenv to install packages locally. This works well for machines that have apps that require more than one version of python and/or packages (like an automated testing server).



                  If you don't have python, or if you need a specific version, download python from Python and build it for your use only. Just use ./configure --prefix=/home/yourusername/python to tell it to install in your home directory as your user instead of in /usr/local. Use whatever install directory you wish that you have permission to.






                  share|improve this answer














                  Assuming you have python and pip already installed, use virtualenv to install packages locally. This works well for machines that have apps that require more than one version of python and/or packages (like an automated testing server).



                  If you don't have python, or if you need a specific version, download python from Python and build it for your use only. Just use ./configure --prefix=/home/yourusername/python to tell it to install in your home directory as your user instead of in /usr/local. Use whatever install directory you wish that you have permission to.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Mar 22 at 17:21

























                  answered Mar 22 at 17:00









                  rtaft

                  397111




                  397111



























                       

                      draft saved


                      draft discarded















































                       


                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1018295%2fhow-to-install-python-and-ase-in-linux-without-sudoer-identity%23new-answer', 'question_page');

                      );

                      Post as a guest













































































                      Popular posts from this blog

                      pylint3 and pip3 broken

                      Missing snmpget and snmpwalk

                      How to enroll fingerprints to Ubuntu 17.10 with VFS491