How to install python and ase in linux without sudoer identity?
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
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.
Here is the guide of ASE:
Can someone help me go through these procedures?
python linux-headers
add a comment |Â
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.
Here is the guide of ASE:
Can someone help me go through these procedures?
python linux-headers
1
You can installase
without sudopip 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 topip install --user ase
? If you do, then use that; if you do not andpip
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
add a comment |Â
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.
Here is the guide of ASE:
Can someone help me go through these procedures?
python linux-headers
How can I install the atomic simulation environment in my working directory? I am a normal user so I cannot use the "sudo" command.
Here is the guide of ASE:
Can someone help me go through these procedures?
python linux-headers
python linux-headers
asked Mar 22 at 15:59
Jack
1092
1092
1
You can installase
without sudopip 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 topip install --user ase
? If you do, then use that; if you do not andpip
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
add a comment |Â
1
You can installase
without sudopip 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 topip install --user ase
? If you do, then use that; if you do not andpip
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
add a comment |Â
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
add a comment |Â
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.
add a comment |Â
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
add a comment |Â
up vote
1
down vote
Here is a tutorial to do this. Install Python, Numpy, and Matplotlib in your home Linux directory
add a comment |Â
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
Here is a tutorial to do this. Install Python, Numpy, and Matplotlib in your home Linux directory
answered Mar 23 at 1:36
Jack
1092
1092
add a comment |Â
add a comment |Â
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.
add a comment |Â
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.
add a comment |Â
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.
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.
edited Mar 22 at 17:21
answered Mar 22 at 17:00
rtaft
397111
397111
add a comment |Â
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%2f1018295%2fhow-to-install-python-and-ase-in-linux-without-sudoer-identity%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
1
You can install
ase
without sudopip 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 andpip
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