https://github.com/codio/knowledge
https://github.com/codio/knowledge
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codio/knowledge
- Owner: codio
- Created: 2020-09-24T15:31:17.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2026-01-09T23:10:27.000Z (6 months ago)
- Last Synced: 2026-01-10T18:34:24.293Z (6 months ago)
- Language: CSS
- Size: 112 MB
- Stars: 1
- Watchers: 13
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Creating Python programs in Codio
## One time setup
### Stack
If using Codio, put on the certified Python stack `Python Ubuntu 22.04 (pyenv)`.
### Install
```
pip install sphinx==8.2.0 sphinxawesome-theme==5.3.2 sphinx-docsearch==0.1.0 sphinx-sitemap==2.9.0 sphinx_code_tabs==0.5.5 sphinx_design==0.6.1
```
### Build
```
python3 -m sphinx source build
```
## Every time you make an edit
### Make
```
make html
# or
make html TYPE=instructor
# or
make html TYPE=student
```
If inside Codio, you can use the Make button on the Codio menu (Next to Preview)
### Preview
Navigate using a web-browser to: **https://{{domain}}/build/html/index.html**
If inside Codio, you can use the Preview play button on the Codio menu.