Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added information about the need for Microsoft Build Tools in CONTRIBUTING.md #56

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,16 @@ for using [MkDocs](https://www.mkdocs.org):

1. Download and [install Python](https://www.python.org/)
(NI recommends 3.8 or later)
2. (Optional) Create a virtual environment named `.venv` in the current
2. Download and [install Microsoft Build Tools for C++](https://visualstudio.microsoft.com/de/visual-cpp-build-tools/)
- MSVC C++ Build Tools
- Windows SDK
3. (Optional) Create a virtual environment named `.venv` in the current
directory by running `python -m venv .venv`. Each time you open a new
command window, activate the environment before running `mkdocs` commands:
- Windows users: run `.venv\Scripts\activate`
- Linux or Mac users: run `source .venv/bin/activate`
3. Upgrade pip by running `python -m pip install --upgrade pip`
4. Install dependencies by running `pip install -r requirements.txt`
4. Upgrade pip by running `python -m pip install --upgrade pip`
5. Install dependencies by running `pip install -r requirements.txt`

For more information and installation options, see
[MkDocs - Installation](https://www.mkdocs.org/#installation).
Expand Down
Loading