logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Create Python Virtual Environments - venv | Online Free DevTools by Hexmos

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

venv

Create lightweight virtual environments in python. More information: https://docs.python.org/library/venv.html.

  • Create a Python virtual environment:

python -m venv {{path/to/virtual_environment}}

  • Activate the virtual environment (Linux and macOS):

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

  • Activate the virtual environment (Windows):

{{path\to\virtual_environment}}\Scripts\activate.bat

  • Deactivate the virtual environment:

deactivate

  • Create an alias that generates a venv folder and automatically activates it:

alias venv='python -m venv .venv && source {{.venv/bin/activate|.venv\Scripts\activate.bat}}'

See Also