Skip to content

Commit

Permalink
Merge pull request #227 from minrk/rm-requirements
Browse files Browse the repository at this point in the history
remove requirements.txt
  • Loading branch information
takluyver committed Jul 23, 2015
2 parents b0cae1f + 2b5ba10 commit f64dec0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ before_install:
- 'if [[ $GROUP == js* ]]; then npm install -g casperjs; fi'
- git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
install:
- pip install -f travis-wheels/wheelhouse -r requirements.txt file://$PWD#egg=notebook[test] coveralls
- pip install -f travis-wheels/wheelhouse --pre file://$PWD#egg=notebook[test] coveralls
script:
- 'if [[ $GROUP == js* ]]; then python -m notebook.jstest ${GROUP:3}; fi'
- 'if [[ $GROUP == python ]]; then nosetests --with-coverage --cover-package=notebook notebook; fi'
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ADD . /srv/notebook
WORKDIR /srv/notebook/
RUN chmod -R +rX /srv/notebook

RUN pip3 install -r requirements.txt -e .[test]
RUN pip3 install -e .[test]

# install kernels
RUN python2 -m ipykernel.kernelspec
Expand Down
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ The Jupyter HTML notebook is a web-based notebook environment for interactive co

Dev quickstart:

* Create a virtual env (ie jupyter-dev)
* ensure that you have node/npm installed (ie brew install node on OS X)
* ensure that you have node/npm installed (e.g. `brew install node` on OS X)
* Clone this repo and cd into it
* pip install -r requirements.txt -e .
* `pip install --pre -e .`

_NOTE_: For Debian/Ubuntu systems, if you're installing the system node you need
to use the 'nodejs-legacy' package and not the 'node' package.
Expand All @@ -16,15 +15,15 @@ Launch with:

jupyter notebook

For Ubuntu Trusty:
Example installation (tested on Ubuntu Trusty):

```
sudo apt-get install nodejs-legacy npm python-virtualenv python-dev
python2 -m virtualenv ~/.virtualenvs/notebook
source ~/.virtualenvs/notebook/bin/activate
# ensure setuptools/pip are up-to-date
pip install --upgrade setuptools pip
git clone https://github.com/jupyter/notebook.git
cd notebook
pip install -r requirements.txt -e .
pip install --pre -e .
jupyter notebook
```

7 changes: 0 additions & 7 deletions requirements.txt

This file was deleted.

0 comments on commit f64dec0

Please sign in to comment.