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

Regular updates (Apr 27) #1195

Merged
merged 11 commits into from
May 7, 2020
2 changes: 1 addition & 1 deletion content/blog/2020-04-30-gsod-ideas-2020.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ technical writer, [Jorge](https://github.com/jorgeorpinel).
[blog-engine](https://github.com/iterative/dvc.org/issues?q=is%3Aopen+is%3Aissue+label%3Ablog-engine)
issues

_Difficulty rating:_ Advanced<br/><br/>
_Difficulty rating:_ Medium-Advanced<br/><br/>

> For more inspiration, feel free to review our
> [epics](https://github.com/iterative/dvc.org/labels/epic) and other open docs
Expand Down
10 changes: 5 additions & 5 deletions content/docs/install/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Installation

Please double check that you don't already have DVC (for example running
`which dvc`) before trying to install it (again).
> Please double check that you don't already have DVC (for example running
> `which dvc`) before trying to install it.

- [Install on MacOS](/doc/install/macos)
- [Install on Windows](/doc/install/windows)
Expand All @@ -16,12 +16,12 @@ if needed. The [Python API](/doc/api-reference) module is `dvc.api`.

## Advanced options

- You can [install a stable pre-release](/doc/install/pre-release) of DVC to
jorgeorpinel marked this conversation as resolved.
Show resolved Hide resolved
stay ahead of official releases.

- Shell completion is automatically enabled by certain installation methods. If
it does not work for you, please see
[these instructions](/doc/install/completion) to set it up.

- You can [install a stable pre-release](/doc/install/pre-release) of DVC to
stay ahead of official releases.

- Please also check out these 3rd-party tool [plugins](/doc/install/plugins),
which might be useful.
26 changes: 19 additions & 7 deletions content/docs/install/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
> To use DVC [as a Python library](/doc/api-reference), please
> [install with pip](#install-with-pip) or [with conda](#install-with-conda).

## Windows installer
## Install with choco

The easiest way is to use the self-contained, executable installer (binary),
which is available from the big "Download" button on the [home page](/). You can
also get it from the [release page](https://github.com/iterative/dvc/releases/)
on GitHub.
The easiest way to install from command line for most cases is to install
[Chocolatey](https://chocolatey.org/) on your machine, and use the `choco`
command:

> You may use Windows Uninstaller to
> [remove the program](https://support.microsoft.com/en-us/help/4028054/windows-10-repair-or-remove-programs).
```dvc
$ choco install dvc
```

## Install with conda

Expand Down Expand Up @@ -56,3 +56,15 @@ $ pip install "dvc[s3]"
In this case it installs `boto3` library as well, besides DVC.

</details>

## Windows installer

An easy way is to use the self-contained, executable installer (binary), which
is available from the big "Download" button on the [home page](/). You can also
get it from the [release page](https://github.com/iterative/dvc/releases/) on
GitHub.

> You'll need to download the installer each time to update DVC.

> You may use Windows Uninstaller to
> [remove the program](https://support.microsoft.com/en-us/help/4028054/windows-10-repair-or-remove-programs).
4 changes: 1 addition & 3 deletions content/docs/user-guide/contributing/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,7 @@ pre-commit hook that is integrated when `yarn` installs the project dependencies
- We use [Prettier](https://prettier.io/) to format our source code (see
[its configuration](https://github.com/iterative/dvc.org/blob/master/.prettierrc)).
The formatting of staged files will automatically be done by a Git pre-commit
hook. You may also run `yarn format <file>` (format specific file/pattern),
`yarn format-staged` (all staged files), or `yarn format-all` (all `.md`,
`.js` and other source files) before committing changes if needed.
hook. You may also run the formatting [commands](#all-commands) manually.
([Advanced usage](https://prettier.io/docs/en/cli.html) of Prettier is
available through `yarn prettier ...`)

Expand Down