embed-python-manager

Download and manage embedded python versions.


Keywords
embed-python, embedded-python, python, python-version-manager
License
MIT
Install
pip install embed-python-manager==0.2.8

Documentation

Install

pip install embed-python-manager

Basic Usages

from embed_python_manager import EmbedPythonManager

manager = EmbedPythonManager('python39')

# Internet connection required.
manager.deploy(add_pip_suits=True, add_tk_suits=False)
#   Now the embedded Python folder is ready to call, copy, move and more.

manager.copy_to(input('Target venv folder: '))
# manager.move_to(input('Target venv folder: '))

Advanced Usages

TODO