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
The html version of this guide is built with [sphinx](http://www.sphinx-doc.org/en/stable/). You may test your revisions locally by having sphinx installed. You can do this easily with pip (as described in the link).
13
+
14
+
```bash
15
+
pip install --user sphinx
16
+
```
17
+
18
+
Then navigate to the directory of the makefile and ```make build``` or ```make html```. Sphinx will then generate the html in a folder called _build/html
19
+
20
+
After navigating to this folder, you can then use python's built in webserver to view your changes locally:
21
+
22
+
```bash
23
+
python3 -m http.server
24
+
```
25
+
26
+
By default, http.server listens on every ip address bound on your host on port 8000. To bind to a specific one, say, localhost on port 8005:
Copy file name to clipboardExpand all lines: docs/dev/env.rst
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -150,6 +150,15 @@ features can be brought to IntelliJ with the free
150
150
versions of PyCharm: Professional Edition (Free 30-day trial) and Community
151
151
Edition(Apache 2.0 License) with fewer features.
152
152
153
+
Python (on Visual Studio Code)
154
+
-----------------------------
155
+
156
+
`Python for Visual Studio <https://marketplace.visualstudio.com/items?itemName=donjayamanne.python>`_ is an extension for the `Visual Studio Code IDE <https://code.visualstudio.com>`_.
157
+
This is a free, light weight, open source IDE, with support for Mac, Windows, and Linux.
158
+
Built using open source technologies such as Node.js and Python, with compelling features such as Intellisense (autocompletion), local and remote debugging, linting, and the like.
159
+
160
+
MIT licensed.
161
+
153
162
Enthought Canopy
154
163
----------------
155
164
`Enthought Canopy <https://www.enthought.com/products/canopy/>`_ is a Python
0 commit comments