-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pipx install instructions make docs for any lang
- Loading branch information
Showing
8 changed files
with
96 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,40 @@ | ||
# bitwarden-import-msecure | ||
|
||
Migration from mSecure to Bitwarden | ||
|
||
|
||
## Installation | ||
|
||
## Installing pipx | ||
[`pipx`](https://pypa.github.io/pipx/) creates isolated environments to avoid conflicts with existing system packages. | ||
|
||
=== "MacOS" | ||
In the terminal, execute: | ||
```bash | ||
brew install pipx | ||
pipx ensurepath | ||
``` | ||
|
||
=== "Linux" | ||
First, ensure Python is installed. | ||
|
||
Enter in the terminal: | ||
```bash | ||
python3 -m pip install --user pipx | ||
python3 -m pipx ensurepath | ||
``` | ||
|
||
=== "Windows" | ||
First, install Python if it's not already installed. | ||
|
||
In the command prompt, type (if Python was installed from the Microsoft Store, use `python3` instead of `python`): | ||
```bash | ||
python -m pip install --user pipx | ||
``` | ||
|
||
## Installing `bitwarden-import-msecure`: | ||
In the terminal (command prompt), execute: | ||
|
||
```bash | ||
pipx install bitwarden-import-msecure | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,43 @@ | ||
# bitwarden-import-msecure | ||
|
||
Переход с mSecure на Bitwarden | ||
|
||
## Установка | ||
|
||
## Установка pipx | ||
[`pipx`](https://pypa.github.io/pipx/) создает изолированные среды, чтобы избежать конфликтов с | ||
существующими системными пакетами. | ||
|
||
=== "MacOS" | ||
В терминале выполните: | ||
|
||
```bash | ||
brew install pipx | ||
pipx ensurepath | ||
``` | ||
|
||
=== "Linux" | ||
Сначала убедитесь, что Python установлен. | ||
|
||
Введите в терминал: | ||
|
||
```bash | ||
python3 -m pip install --user pipx | ||
python3 -m pipx ensurepath | ||
``` | ||
|
||
=== "Windows" | ||
Сначала установите Python, если он еще не установлен. | ||
|
||
В командной строке введите (если Python был установлен из Microsoft Store, используйте `python3` вместо `python`): | ||
|
||
```bash | ||
python -m pip install --user pipx | ||
``` | ||
|
||
## Установка `bitwarden-import-msecure`: | ||
В терминале (командной строке) выполните: | ||
|
||
```bash | ||
pipx install bitwarden-import-msecure | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
click |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# This file was autogenerated by uv via the following command: | ||
# uv pip compile requirements.in --output-file=requirements.txt | ||
click==8.1.7 |