-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding installation method for mac via pipenv
- Loading branch information
1 parent
e66c929
commit 3e96cd5
Showing
1 changed file
with
41 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
macOS Install | ||
=========== | ||
|
||
Pipenv | ||
------ | ||
|
||
This is the simplest way for now to install the Nitrokey App 2 on macOS. Further methods are being worked on. | ||
|
||
1. `Install <https://pipenv.pypa.io/en/latest/installation.htm>`__ Pipenv if it is not already installed. | ||
2. Create a work directory | ||
|
||
code-block:: | ||
|
||
mkdir nitrokeyapp | ||
|
||
3. Enter the directory | ||
code-block:: | ||
|
||
cd nitrokeyapp | ||
4. Install the app via pipenv | ||
code-block:: | ||
|
||
pipenv install nitrokeyapp | ||
|
||
The app can be updated the following way | ||
|
||
1. Enter the work directory | ||
code-block:: | ||
|
||
cd nitrokeyapp | ||
2. pipenv update | ||
|
||
To run the application, go into the workdirectory | ||
code-block:: | ||
|
||
cd nitrokeyapp | ||
|
||
and run | ||
code-block:: | ||
|
||
pipenv run nitrokeyapp. |