mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-15 04:00:34 +08:00
Add FreeBSD instructions
This commit is contained in:
parent
0ceeb5ce75
commit
b98205c63b
20
README.md
20
README.md
@ -28,3 +28,23 @@ pip install -r requirements.txt -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