Scipy installation in local
Basically I need to install scipy 1.2.2 for python2.7 in local in a cluster running rhel fedora 6.5 where I do not have sudo permissions.
I've already installed python2.7 and numpy. I installed numpy with the following command:
./easy_install --prefix=/home/gspirito/Python-2.7.14/ numpy
And the installation was succesfull.
So I run this:
./easy_install --prefix=/home/gspirito/Python-2.7.14/ scipy==1.2.0
But I get this error:
Traceback (most recent call last): File "./easy_install", line 11,
in
load_entry_point('setuptools==33.1.1', 'console_scripts', 'easy_install')() File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 2270, in main File
"/home/gspirito/Python-2.7.14/lib/python2.7/distutils/core.py", line
151, in setup
dist.run_commands() File "/home/gspirito/Python-2.7.14/lib/python2.7/distutils/dist.py", line
953, in run_commands
self.run_command(cmd) File "/home/gspirito/Python-2.7.14/lib/python2.7/distutils/dist.py", line
972, in run_command
cmd_obj.run() File "build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 411, in run File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 674, in easy_install File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 700, in install_item File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 881, in install_eggs File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 1120, in build_and_install File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 1106, in run_setup File
"build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 258, in
run_setup File
"/home/gspirito/Python-2.7.14/lib/python2.7/contextlib.py", line 35,
in exit
self.gen.throw(type, value, traceback) File "build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 198, in
setup_context File
"/home/gspirito/Python-2.7.14/lib/python2.7/contextlib.py", line 35,
in exit
self.gen.throw(type, value, traceback) File "build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 169, in
save_modules File
"build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 143, in
resume File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py",
line 1388, in loads
return Unpickler(file).load() File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py", line 864, in
load
dispatchkey File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py", line 1096, in
load_global
klass = self.find_class(module, name) File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py", line 1130, in
find_class
import(module) File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/init.py",
line 142, in
from . import core File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/init.py", line 16, in
from . import multiarray File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/multiarray.py",
line 70, in
def empty_like(prototype, dtype=None, order=None, subok=None): File
"/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/overrides.py",
line 240, in decorator
docs_from_dispatcher=docs_from_dispatcher)(implementation) File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/overrides.py",
line 204, in decorator
add_docstring(implementation, dispatcher.doc) RuntimeError: empty_like method already has a docstring
Does anyone know what is the issue?
Thanks in advance.
installation python
add a comment |
Basically I need to install scipy 1.2.2 for python2.7 in local in a cluster running rhel fedora 6.5 where I do not have sudo permissions.
I've already installed python2.7 and numpy. I installed numpy with the following command:
./easy_install --prefix=/home/gspirito/Python-2.7.14/ numpy
And the installation was succesfull.
So I run this:
./easy_install --prefix=/home/gspirito/Python-2.7.14/ scipy==1.2.0
But I get this error:
Traceback (most recent call last): File "./easy_install", line 11,
in
load_entry_point('setuptools==33.1.1', 'console_scripts', 'easy_install')() File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 2270, in main File
"/home/gspirito/Python-2.7.14/lib/python2.7/distutils/core.py", line
151, in setup
dist.run_commands() File "/home/gspirito/Python-2.7.14/lib/python2.7/distutils/dist.py", line
953, in run_commands
self.run_command(cmd) File "/home/gspirito/Python-2.7.14/lib/python2.7/distutils/dist.py", line
972, in run_command
cmd_obj.run() File "build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 411, in run File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 674, in easy_install File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 700, in install_item File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 881, in install_eggs File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 1120, in build_and_install File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 1106, in run_setup File
"build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 258, in
run_setup File
"/home/gspirito/Python-2.7.14/lib/python2.7/contextlib.py", line 35,
in exit
self.gen.throw(type, value, traceback) File "build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 198, in
setup_context File
"/home/gspirito/Python-2.7.14/lib/python2.7/contextlib.py", line 35,
in exit
self.gen.throw(type, value, traceback) File "build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 169, in
save_modules File
"build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 143, in
resume File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py",
line 1388, in loads
return Unpickler(file).load() File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py", line 864, in
load
dispatchkey File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py", line 1096, in
load_global
klass = self.find_class(module, name) File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py", line 1130, in
find_class
import(module) File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/init.py",
line 142, in
from . import core File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/init.py", line 16, in
from . import multiarray File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/multiarray.py",
line 70, in
def empty_like(prototype, dtype=None, order=None, subok=None): File
"/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/overrides.py",
line 240, in decorator
docs_from_dispatcher=docs_from_dispatcher)(implementation) File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/overrides.py",
line 204, in decorator
add_docstring(implementation, dispatcher.doc) RuntimeError: empty_like method already has a docstring
Does anyone know what is the issue?
Thanks in advance.
installation python
add a comment |
Basically I need to install scipy 1.2.2 for python2.7 in local in a cluster running rhel fedora 6.5 where I do not have sudo permissions.
I've already installed python2.7 and numpy. I installed numpy with the following command:
./easy_install --prefix=/home/gspirito/Python-2.7.14/ numpy
And the installation was succesfull.
So I run this:
./easy_install --prefix=/home/gspirito/Python-2.7.14/ scipy==1.2.0
But I get this error:
Traceback (most recent call last): File "./easy_install", line 11,
in
load_entry_point('setuptools==33.1.1', 'console_scripts', 'easy_install')() File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 2270, in main File
"/home/gspirito/Python-2.7.14/lib/python2.7/distutils/core.py", line
151, in setup
dist.run_commands() File "/home/gspirito/Python-2.7.14/lib/python2.7/distutils/dist.py", line
953, in run_commands
self.run_command(cmd) File "/home/gspirito/Python-2.7.14/lib/python2.7/distutils/dist.py", line
972, in run_command
cmd_obj.run() File "build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 411, in run File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 674, in easy_install File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 700, in install_item File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 881, in install_eggs File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 1120, in build_and_install File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 1106, in run_setup File
"build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 258, in
run_setup File
"/home/gspirito/Python-2.7.14/lib/python2.7/contextlib.py", line 35,
in exit
self.gen.throw(type, value, traceback) File "build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 198, in
setup_context File
"/home/gspirito/Python-2.7.14/lib/python2.7/contextlib.py", line 35,
in exit
self.gen.throw(type, value, traceback) File "build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 169, in
save_modules File
"build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 143, in
resume File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py",
line 1388, in loads
return Unpickler(file).load() File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py", line 864, in
load
dispatchkey File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py", line 1096, in
load_global
klass = self.find_class(module, name) File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py", line 1130, in
find_class
import(module) File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/init.py",
line 142, in
from . import core File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/init.py", line 16, in
from . import multiarray File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/multiarray.py",
line 70, in
def empty_like(prototype, dtype=None, order=None, subok=None): File
"/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/overrides.py",
line 240, in decorator
docs_from_dispatcher=docs_from_dispatcher)(implementation) File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/overrides.py",
line 204, in decorator
add_docstring(implementation, dispatcher.doc) RuntimeError: empty_like method already has a docstring
Does anyone know what is the issue?
Thanks in advance.
installation python
Basically I need to install scipy 1.2.2 for python2.7 in local in a cluster running rhel fedora 6.5 where I do not have sudo permissions.
I've already installed python2.7 and numpy. I installed numpy with the following command:
./easy_install --prefix=/home/gspirito/Python-2.7.14/ numpy
And the installation was succesfull.
So I run this:
./easy_install --prefix=/home/gspirito/Python-2.7.14/ scipy==1.2.0
But I get this error:
Traceback (most recent call last): File "./easy_install", line 11,
in
load_entry_point('setuptools==33.1.1', 'console_scripts', 'easy_install')() File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 2270, in main File
"/home/gspirito/Python-2.7.14/lib/python2.7/distutils/core.py", line
151, in setup
dist.run_commands() File "/home/gspirito/Python-2.7.14/lib/python2.7/distutils/dist.py", line
953, in run_commands
self.run_command(cmd) File "/home/gspirito/Python-2.7.14/lib/python2.7/distutils/dist.py", line
972, in run_command
cmd_obj.run() File "build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 411, in run File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 674, in easy_install File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 700, in install_item File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 881, in install_eggs File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 1120, in build_and_install File
"build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py",
line 1106, in run_setup File
"build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 258, in
run_setup File
"/home/gspirito/Python-2.7.14/lib/python2.7/contextlib.py", line 35,
in exit
self.gen.throw(type, value, traceback) File "build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 198, in
setup_context File
"/home/gspirito/Python-2.7.14/lib/python2.7/contextlib.py", line 35,
in exit
self.gen.throw(type, value, traceback) File "build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 169, in
save_modules File
"build/bdist.linux-x86_64/egg/setuptools/sandbox.py", line 143, in
resume File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py",
line 1388, in loads
return Unpickler(file).load() File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py", line 864, in
load
dispatchkey File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py", line 1096, in
load_global
klass = self.find_class(module, name) File "/home/gspirito/Python-2.7.14/lib/python2.7/pickle.py", line 1130, in
find_class
import(module) File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/init.py",
line 142, in
from . import core File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/init.py", line 16, in
from . import multiarray File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/multiarray.py",
line 70, in
def empty_like(prototype, dtype=None, order=None, subok=None): File
"/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/overrides.py",
line 240, in decorator
docs_from_dispatcher=docs_from_dispatcher)(implementation) File "/home/gspirito/Python-2.7.14/lib/python2.7/site-packages/numpy-1.16.0-py2.7-linux-x86_64.egg/numpy/core/overrides.py",
line 204, in decorator
add_docstring(implementation, dispatcher.doc) RuntimeError: empty_like method already has a docstring
Does anyone know what is the issue?
Thanks in advance.
installation python
installation python
asked Jan 21 at 18:56
GiovanniGiovanni
61
61
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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',
autoActivateHeartbeat: false,
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
});
}
});
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%2fsuperuser.com%2fquestions%2f1396736%2fscipy-installation-in-local%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1396736%2fscipy-installation-in-local%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