Skip to content

Instantly share code, notes, and snippets.

@kopp
Last active April 25, 2023 19:34
Show Gist options
  • Save kopp/da5d7fba58a46e2610cf27561c8c54b6 to your computer and use it in GitHub Desktop.
Save kopp/da5d7fba58a46e2610cf27561c8c54b6 to your computer and use it in GitHub Desktop.
BAT script to install and run Jupyter Lab in a virtualenv
python -m venv virtualenv
CALL virtualenv\Scripts\activate.bat
pip install jupyterlab
PAUSE
CALL virtualenv\Scripts\activate.bat
jupyter lab
PAUSE
@ilias4780
Copy link

Thank you very much mate! Really helpful.

@khankhattak1
Copy link

Thanks for CALL function

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment