Github repository For chemical reaction engineering course. The website can be found here.
I use powershell in windows terminal.
Clone the repository.
gh repo clone rputikar/chemical-reaction-engineering
Set up python virtual environment and activate it.
python -m venv _env
.\_env\Scripts\Activate.ps1
Install packages required to run juypter from Quarto
python -m pip install -r requirements.txt
quarto render
Use winget
(Windows Package Manager) simplifies the installation process.
-
Install Git:
winget install Git.Git
-
Install GitHub CLI:
winget install GitHub.cli
-
Verify Installations:
git --version gh --version
-
Authenticate with GitHub CLI:
gh auth login
-
Set Git Credentials:
git config --global user.name "Your GitHub Username" git config --global user.email "Your GitHub Email"
Git and GitHub CLI are ready for use in PowerShell.
Quarto is an open-source scientific and technical publishing system.
Follow installation instructions at quarto.org
Python is a programming language that lets you work more quickly and integrate your systems more effectively.
Python should be already installed on your machine. Check with
python --version
If you get an error, install python.
winget install Python.Python.3.10
Project Jupyter is a non-profit, open-source project, born out of the IPython Project in 2014 as it evolved to support interactive data science and scientific computing across all programming languages.
Jupyter will be installed via requirements.txt.