File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1313Create a virtual environment and install dependencies:
1414
1515``` bash
16- make venv
16+ make venv && source .venv/bin/activate
1717make setup
1818```
1919
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ all: lock install upgrade lint test build
2929venv :
3030 @echo " 🛠 Creating virtual environment..."
3131 $(SYSTEM_PYTHON ) -m venv .venv
32- @. ./.venv/bin/activate
33- @echo " ✅ virtual environment created. "
32+ @echo " ✅ virtual environment created. Activate it with: "
33+ @echo " source .venv/bin/activate "
3434
3535# Lock: Generates requirements.txt from pyproject.toml
3636.PHONY : lock
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ Python Project Blueprint
66
77## Development
88
9+ Please read the [ DEVELOPMENT.md] ( ./DEVELOPMENT.md ) for development instructions.
10+
911Check the [ Makefile] ( ./Makefile ) for automation as the initial step, it defines all project commands.
1012
1113### Make Commands
You can’t perform that action at this time.
0 commit comments