π Venv ScriptΒΆ
This script automates the creation of a Python virtual environment, installs dependencies from requirements.txt
, and builds the MkDocs documentation site. It is intended for use on Windows systems (using venv/Scripts/activate
).
π FeaturesΒΆ
- Creates a Python virtual environment in the
venv
directory - Installs dependencies from
requirements.txt
- Builds the MkDocs documentation site with verbose output
- Installs MkDocs if not already present
venv.sh | |
---|---|
- β Creates Python virtual environment in
venv
folder - β Activates the environment using Windows path
- β Installs all dependencies from requirements file
- β Builds MkDocs documentation with detailed output
π UsageΒΆ
- Run in the project root directory
- Make sure
python3
andpip
are installed
β οΈ NotesΒΆ
- The script uses Windows-style activation (
venv/Scripts/activate
) - Adjust the activation path for Unix systems if needed