Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gaow committed Apr 7, 2016
1 parent acbbd10 commit a838ebc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion doc/setup-1-installation.notes
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,23 @@
###
# Requirement
###
# DSC2 requires Python 3. If you do not have Python 3 on your system it is strongly recommended that you install Python 3 from @@conda@@:
# DSC2 requires Python 3. If you do not have Python 3 on your system it is strongly recommended that you install Python 3 from @@conda@@.
#! Download for Linux
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
#! For MacOS
wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
bash Miniconda3-latest-MacOSX-x86_64.sh
# Follow the prompt to install it (use @@ctrl+F@@ to quickly jump to the end of the Licenses if you have read them before). Be sure to add the installation path to your shell environment (the installation script will ask if you'd like this be configured automatically: say Yes unless you know what you are doing).
# After the program is installed, you have to reload your @@bash@@ profile. If you do not know what this means, just exit the current terminal and open up a new one.
###
# Released versions
###
# Versioned release can be found at @https://github.com/stephenslab/dsc2/releases@. You can download and decompress the package, then run:
cd src
python setup.py install
# to install it. @@DCS2@@ will automatically download and compile its dependent packages, among which @@numpy@@ and @@pandas@@ will take a while to build.
# ""Note: if during the installation you get the complaint ``numpy'' not found, just run this setup command again and it should work."" This is due to a bug for package @@numexpr@@ which does not recognize @@numpy@@ if it is newly installed.
###
# Developing version
###
Expand Down
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
],
install_requires = ['sos==0.5.7', 'pyyaml', 'pandas>=0.18.0',
'rpy2>=2.7.8', 'sympy', 'numexpr>=2.5.1',
'numpy']
'celery', 'numpy']
)

0 comments on commit a838ebc

Please sign in to comment.