Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
a76adc28
Commit
a76adc28
authored
May 31, 2013
by
Slater-Victoroff
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added useful requirements and removed problematic scipy
parent
ab2a919c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
+8
-7
requirements/system/ubuntu/apt-packages.txt
+1
-0
scripts/create-dev-env.sh
+7
-7
No files found.
requirements/system/ubuntu/apt-packages.txt
View file @
a76adc28
...
...
@@ -3,6 +3,7 @@ pkg-config
curl
git
python-virtualenv
python-scipy
build-essential
python-dev
gfortran
...
...
scripts/create-dev-env.sh
View file @
a76adc28
...
...
@@ -416,18 +416,18 @@ SCIPY_VER="0.10.1"
if
[[
-n
$compile
]]
;
then
output
"Downloading numpy and scipy"
curl
-sL
-o
numpy.tar.gz http://downloads.sourceforge.net/project/numpy/NumPy/
${
NUMPY_VER
}
/numpy-
${
NUMPY_VER
}
.tar.gz
curl
-sL
-o
scipy.tar.gz http://downloads.sourceforge.net/project/scipy/scipy/
${
SCIPY_VER
}
/scipy-
${
SCIPY_VER
}
.tar.gz
#
curl -sL -o scipy.tar.gz http://downloads.sourceforge.net/project/scipy/scipy/${SCIPY_VER}/scipy-${SCIPY_VER}.tar.gz
tar
xf numpy.tar.gz
tar
xf scipy.tar.gz
rm
-f
numpy.tar.gz scipy.tar.gz
#
tar xf scipy.tar.gz
rm
-f
numpy.tar.gz
#
scipy.tar.gz
output
"Compiling numpy"
cd
"
$BASE
/numpy-
${
NUMPY_VER
}
"
python setup.py install
output
"Compiling scipy"
cd
"
$BASE
/scipy-
${
SCIPY_VER
}
"
python setup.py install
#
output "Compiling scipy"
#
cd "$BASE/scipy-${SCIPY_VER}"
#
python setup.py install
cd
"
$BASE
"
rm
-rf
numpy-
${
NUMPY_VER
}
scipy-
${
SCIPY_VER
}
rm
-rf
numpy-
${
NUMPY_VER
}
#
scipy-${SCIPY_VER}
fi
# building correct version of distribute from source
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment