Introduction to Visualization Technologies in Common Use
- Make sure you have python3 installed. Brew for OSX, you might consider using the WSL on Windows. Linux package managers include
dnfandaptdepending on your distribution. python3.12 -m venv .venv: Creates a python virtual environment in the.venvsubdirectory of wherever you issue this command. (Note: Python 3.13 and above do not yet have all the necessary libraries released for these notebooks.)source .venv/bin/activate: Activates that virtual environmentpip install -r notebooks/requirements.txt: Installs the libraries necessary to run these notebooks. From the root of this repository it is in thenotebooks/subdirectory.jupyter lab: Will start your jupyter lab environment and let you see the notebooks.