You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+20-2Lines changed: 20 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,9 +23,27 @@ Getting Started
23
23
24
24
We have tried to make it as easy as possible for you to build and use this book.
25
25
26
-
1. You can see and read this book online at `interactivepython.org<http://interactivepython.org/runestone/static/thinkcspy/index.html>`_
26
+
You can see and read this book online at `runestone.academy<http://runestone.academy/ns/books/published/thinkcspy/index.html?mode=browsing>`_
27
27
28
-
2. You can build it and host it yourself in just a few simple steps:
28
+
.. important:: The restructuredText version of this book is deprecated!
29
+
30
+
Building with PreTeXt
31
+
---------------------
32
+
33
+
1. Create a virtual environment
34
+
2. pip install pretextbook
35
+
3. To build run: pretext build --input pretext/thinkcspy.ptx --output output --format html --publication pretext/publication-rs-for-all.xml
36
+
4. pretext view html
37
+
38
+
Note: The pretext sources are in the pretext folder, we will keep the _sources folder until we are 100% sure that the book has been converted correctly and as thoroughly as possible.
39
+
40
+
41
+
Building with runestone
42
+
-----------------------
43
+
As mentioned above this method is deprecated, but will still work.
44
+
Any updates to this book should be made in PreTeXt NOT RST.
45
+
46
+
You can build it and host it yourself in just a few simple steps:
29
47
30
48
1. ``pip install -r requirements.txt`` -- Should install everything you need
31
49
2. ``runestone build`` -- will build the html and put it in ``./build/thinkcspy``
Copy file name to clipboardExpand all lines: _sources/PythonTurtle/OurFirstTurtleProgram.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -262,7 +262,7 @@ screen until we click on it.
262
262
:practice: T
263
263
:answer_a: <img src="../_static/test1Alt1.png" alt="right turn of 90 degrees before drawing, draw a line 150 pixels long, turn left 90, and draw a line 75 pixels long"/>
264
264
:answer_b: <img src="../_static/test1Alt2.png" alt="left turn of 180 degrees before drawing, draw a line 150 pixels long, turn left 90, and draw a line 75 pixels long"/>
265
-
:answer_c: <img src="../_static/test1Alt3.png" alt="left turn of 270 degrees before drawing, draw a line 150 pixels long, turn left 90, and draw a line 75 pixels long">/
265
+
:answer_c: <img src="../_static/test1Alt3.png" alt="left turn of 270 degrees before drawing, draw a line 150 pixels long, turn left 90, and draw a line 75 pixels long"/>
266
266
:answer_d: <img src="../_static/test1Alt4v2.png" alt="right turn of 270 degrees before drawing, draw a line 150 pixels long, turn right 90, and draw a line 75 pixels long"/>
267
267
:answer_e: <img src="../_static/test1correct.png" alt="left turn of 90 degrees before drawing, draw a line 150 pixels long, turn left 90, and draw a line 75 pixels long"/>
0 commit comments