Skip to content

Commit

Permalink
Fix virtualenv formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
redjax committed Mar 19, 2024
1 parent a1f386e commit d8d0075
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/programming/python/virtualenv.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@

[RealPython: Virtualenv Primer](https://realpython.com/python-virtual-environments-a-primer/)

`virtualenv` is a tool for creating virtual Python environments. The `virtualenv` tool has been part of the base Python install since version `These environments are stored in a directory, usually `./.venv`, and can be "activated" when you are developing a Python project. Virtual environments can also be used as Jupyter kernels if you install the `ipykernel` package.
`virtualenv` is a tool for creating virtual Python environments. The `virtualenv` tool is sometimes installed with the "system" Python, but you may need to install it yourself (see the warning below).

These virtual environments are stored in a directory, usually `./.venv`, and can be "activated" when you are developing a Python project. Virtual environments can also be used as Jupyter kernels if you install the `ipykernel` package.

!!! warning

Expand Down

0 comments on commit d8d0075

Please sign in to comment.