A streamlined toolset for quickly setting up Python virtual environments with Jupyter Lab support.
This project provides automated scripts to create and configure Python virtual environments, making it easy to get started with Python development and Jupyter notebooks.
- Python 3.12 or higher
- Bash shell (macOS/Linux)
Create a new virtual environment:
./setup_venv.shCheck your Python version before proceeding:
python check_python_version.pyThis script validates Python 3.12 compatibility.
Install required packages:
./install_deps.shStart Jupyter Lab for notebook development:
jupyter labTo activate the virtual environment in a new terminal session:
source ./myvenv/bin/activateWhen you're done working:
deactivate