Python3-venv Installation Instructions For Ubuntu (#10988)

pull/10930/head
MugoBrian 2023-10-04 12:28:59 +03:00 zatwierdzone przez Matt Westcott
rodzic 5a0bd78e68
commit b1de0e5860
4 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -49,6 +49,7 @@ Changelog
* Docs: Add documentation for building non-model-based choosers using the _queryish_ library (Matt Westcott)
* Docs: Fix incorrect tag library import on focal points example (Hatim Makki Hoho)
* Docs: Add reminder about including your custom Draftail feature in any overridden `WAGTAILADMIN_RICH_TEXT_EDITORS` setting (Charlie Sue)
* Docs: Mention the need to install `python3-venv` on Ubuntu (Brian Mugo)
* Maintenance: Fix snippet search test to work on non-fallback database backends (Matt Westcott)
* Maintenance: Update Eslint, Prettier, Jest, a11y-dialog, axe-core and js-cookie npm packages (LB (Ben) Johnston)
* Maintenance: Add npm scripts for TypeScript checks and formatting SCSS files (LB (Ben) Johnston)

Wyświetl plik

@ -739,6 +739,7 @@
* Charlie Sue
* Dhrűv
* Sandro Rodrigues
* Brian Mugo
## Translators

Wyświetl plik

@ -31,7 +31,7 @@ If none of the preceding commands return a version number, or return a version l
### Create and activate a virtual environment
This tutorial recommends using a virtual environment, which isolates installed dependencies from other projects.
This tutorial uses [`venv`](https://docs.python.org/3/tutorial/venv.html), which is packaged with Python 3.
This tutorial uses [`venv`](https://docs.python.org/3/tutorial/venv.html), which is packaged with Python 3. On Ubuntu, it may be necessary to run `sudo apt install python3-venv` to install it.
**On Windows** (cmd.exe), run the following commands:

Wyświetl plik

@ -67,6 +67,7 @@ depth: 1
* Add documentation for building non-model-based choosers using the _queryish_ library (Matt Westcott)
* Fix incorrect tag library import on focal points example (Hatim Makki Hoho)
* Add reminder about including your custom Draftail feature in any overridden `WAGTAILADMIN_RICH_TEXT_EDITORS` setting (Charlie Sue)
* Mention the need to install `python3-venv` on Ubuntu (Brian Mugo)
### Maintenance