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

Adjust Windows Installation Instructions to account for Nuclio issue#1821 #5558

Merged
merged 6 commits into from
Jan 10, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- \[SDK\] The `resource_type` args now have the default value of `local` in task creation functions.
The corresponding arguments are keyword-only now.
(<https://github.com/opencv/cvat/pull/5502>)
- Windows Installation Instructions adjusted to work around https://github.com/nuclio/nuclio/issues/1821
nmanovic marked this conversation as resolved.
Show resolved Hide resolved

### Deprecated
- TDB
Expand Down
7 changes: 3 additions & 4 deletions site/content/en/docs/administration/basics/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,7 @@ For access from China, read [sources for users from China](#sources-for-users-fr
## Windows 10

- Install WSL2 (Windows subsystem for Linux) refer to [this official guide](https://docs.microsoft.com/windows/wsl/install-win10).
WSL2 requires Windows 10, version 2004 or higher. Note: You may not have to install a Linux distribution unless
needed.
WSL2 requires Windows 10, version 2004 or higher. After installing WSL2, install a Linux Distribution of your choice.

- Download and install [Docker Desktop for Windows](https://desktop.docker.com/win/main/amd64/Docker%20Desktop%20Installer.exe).
Double-click `Docker for Windows Installer` to run the installer.
Expand All @@ -145,7 +144,7 @@ For access from China, read [sources for users from China](#sources-for-users-fr
- Download and install [Google Chrome](https://www.google.com/chrome/). It is the only browser
which is supported by CVAT.

- Go to windows menu, find `Git Bash` application and run it. You should see a terminal window.
- Go to windows menu, find the Linux distribution you installed and run it. You should see a terminal window.

- Clone _CVAT_ source code from the
[GitHub repository](https://github.com/opencv/cvat).
Expand Down Expand Up @@ -183,7 +182,7 @@ For access from China, read [sources for users from China](#sources-for-users-fr
below:

```shell
winpty docker exec -it cvat_server bash -ic 'python3 ~/manage.py createsuperuser'
sudo docker exec -it cvat_server bash -ic 'python3 ~/manage.py createsuperuser'
```

If you don't have winpty installed or the above command does not work, you may also try the following:
Expand Down