Members:
- Wai Hong Fung
- Mae Lam
- Ho Kong Leung
- Mayuresh Nerurkar
Public URL for the page is - maelam-t431.github.io/mini-project-html
python -m venv ./venv/github-pages/
- Create a virtual environment.\venv\github-pages\Scripts\Activate.ps1
- Activate it (use the right script depending on your terminal, this one is forWindows-PowerShell
)pip install -r requirements.txt
- install the packages into the virtual environmentpython -m ipykernel install --user --name=github_pages --display-name=github_pages
- set up the IPython kernel in the virtual environment, such that this environment could be used in VSCode. Notice the name that we provide to the environment. This is how it will be identified in VSCode.
jupyter nbconvert --to html ./notebooks/index.ipynb --output-dir ./docs --TagRemovePreprocessor.enabled=True --TagRemovePreprocessor.remove_input_tags="['noshow']"
- converts the notebook into an HTML file.