You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
396 B
20 lines
396 B
.. _development_faq:
|
|
|
|
Developer FAQ
|
|
=============
|
|
|
|
1. How do I install a prerelease version such as a beta or release candidate?
|
|
|
|
.. code-block:: bash
|
|
|
|
python -m pip install notebook --pre --upgrade
|
|
|
|
2. What are the basic steps for a development install?
|
|
|
|
.. code-block:: bash
|
|
|
|
git clone https://github.com/jupyter/notebook
|
|
cd notebook
|
|
python setup.py js css
|
|
pip install -e .
|