Commit 6221233 0 parents commit 6221233 Copy full SHA for 6221233
File tree 3 files changed +1715
-0
lines changed
3 files changed +1715
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Example Binder with requirements.txt
2
+
3
+ A Binder-compatible repo with a ` requirements.txt ` file.
4
+
5
+ [ ![ Binder] ( http://mybinder.org/badge.svg )] ( http://beta.mybinder.org/v2/gh/binder-examples/requirements/master )
6
+
7
+ Access this Binder at the following URL:
8
+
9
+ http://beta.mybinder.org/v2/gh/binder-examples/requirements/master
10
+
11
+ # Notes
12
+ The ` requirements.txt ` file should list all Python libraries that your notebooks
13
+ depend on, and they will be installed using
14
+
15
+ ```
16
+ pip install -r requirements.txt
17
+ ```
18
+
19
+ The base Binder image contains minimal extra dependencies, so be as
20
+ explicit as possible in defining the packages that you need.
21
+
22
+ In this example we include the library ` seaborn ` , and our notebook uses Seaborn
23
+ to plot a figure.
You can’t perform that action at this time.
0 commit comments