logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Create Virtual Environments - Isolate Python Projects | Online Free DevTools by Hexmos

Create virtual environments with Virtualenv. Isolate Python project dependencies and manage different Python versions. Free online tool, no registration required.

virtualenv

Create virtual isolated Python environments. More information: https://virtualenv.pypa.io/en/latest/cli_interface.html.

  • Create a new environment:

virtualenv {{path/to/venv}}

  • Customize the prompt prefix:

virtualenv --prompt {{prompt_prefix}} {{path/to/venv}}

  • Use a different version of Python with virtualenv:

virtualenv {{[-p|--python]}} {{path/to/pythonbin}} {{path/to/venv}}

  • Start (select) the environment:

source {{path/to/venv}}/bin/activate

  • Stop the environment:

deactivate

See Also