Skip to content

Commit

Permalink
update and fix some installation docs
Browse files Browse the repository at this point in the history
  • Loading branch information
keflavich committed Dec 15, 2017
1 parent bf3d6f6 commit 30b46b8
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
8 changes: 4 additions & 4 deletions INSTALL.txt
@@ -1,9 +1,9 @@
Installation is the same as any python package, e.g.:

wget --no-check-certificate https://bitbucket.org/pyspeckit/pyspeckit.bitbucket.org/get/tip.tar.gz
tar -xzf pyspeckit-pyspeckit.bitbucket.org-tip.tar.gz
cd pyspeckit-pyspeckit.bitbucket.org-tip
wget --no-check-certificate https://github.com/pyspeckit/pyspeckit/archive/master.zip
unzip master.zip
cd pyspeckit
python setup.py install

or if you have pip:
pip install https://bitbucket.org/pyspeckit/pyspeckit.bitbucket.org/get/tip.tar.gz
pip install https://github.com/pyspeckit/pyspeckit/archive/master.zip
22 changes: 22 additions & 0 deletions docs/install_via_GitHub.rst
@@ -1,6 +1,28 @@
Install pyspeckit via GitHub
============================

Quick
-----

You can pip install the development version of pyspeckit::

pip install https://github.com/pyspeckit/pyspeckit/archive/master.zip


Installing a branch
-------------------

If there's a bugfix branch, e.g., from a pull request, you can install it in a similar way. Just replace the branch name::

pip install https://github.com/pyspeckit/pyspeckit/archive/{branchname}.zip



More detailed
-------------

If you want to help develop pyspeckit, follow these instructions:

Logged into your github account, go to https://github.com/pyspeckit/pyspeckit
and click “Fork” in upper right.

Expand Down

0 comments on commit 30b46b8

Please sign in to comment.