mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-15 04:00:34 +08:00
Merge pull request #169 from Security513/master
Add FreeBSD instructions
This commit is contained in:
commit
e901e4d1f2
20
README.md
20
README.md
@ -27,3 +27,23 @@ pip install --pre -e .
|
||||
jupyter notebook
|
||||
```
|
||||
|
||||
For FreeBSD:
|
||||
```
|
||||
cd /usr/ports/www/npm
|
||||
sudo make install # (Be sure to select the "NODE" option)
|
||||
cd /usr/ports/devel/py-pip
|
||||
sudo make install
|
||||
cd /usr/ports/devel/py-virtualenv
|
||||
sudo make install
|
||||
cd /usr/ports/shells/bash
|
||||
sudo make install
|
||||
mkdir -p ~/.virtualenvs
|
||||
python2.7 -m virtualenv ~/.virtualenvs/notebook
|
||||
bash
|
||||
source ~/.virtualenvs/notebook/bin/activate
|
||||
pip install --upgrade setuptools pip pycurl
|
||||
git clone https://github.com/jupyter/notebook.git
|
||||
cd notebook
|
||||
pip install -r requirements.txt -e .
|
||||
jupyter notebook
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user