Skip to content

Latest commit

 

History

History
160 lines (103 loc) · 6.36 KB

installation.rst

File metadata and controls

160 lines (103 loc) · 6.36 KB

nvPY installation guide

You can install nvPY in several ways. Windows users can easily install the pre-built binary package. Mac and Linux users can install the nvpy package published on pypi. Other options are shown in the table below:

Installation method \ OS Windows Mac Linux
Pre-built binary package × ×
Install from pypi
Install from source
Build binary yourself × ×

The meanings of the symbols described in the above table are as follows:

  • ○ - It is supported and the main features are well tested by the maintainer.
  • △ - It is supported for developers and expert users. Some features may be unstable.
  • × - It may be possible, but not supported. Maintainer probably won't fix issues.

Note: On macOS, nvPY may be unstable. It crashes or hangs while typing text due to an underlying UI library issue in some environments.

There are many (mostly very easy) ways to install nvPY. This document summarises a number of them.

This section describes how to install pre-built package. Follow the steps below:

  1. Find the latest stable release from the releases page.

  2. Download nvpy-windows.zip file and extract it.

  3. Create a setting file. Start a notepad by pressing Windows-R and typing notepad %HOMEPATH%\nvpy.cfg. And write the following settings into the notepad.

    [nvpy]
    sn_username = your_simplenote_email
    sn_password = your_simplenote_password
    
  4. Start nvpy.exe.

  5. Wait a little for full synchronization to complete.

  6. Consider creating a shortcut to nvpy.exe on your desktop or in your start menu.

To upgrade an existing installation of nvpy, just replace the nvpy folder with the newer version.

  1. Download and install the Python 3.7 or later. Don't forget to install the Python launcher.

  2. Install pipx that the package manager for end-user applications.

    py -3 -m pip install -U pipx
    
  3. Install nvPY package by pipx.

    py -3 -m pipx install nvpy
    
  4. Create a setting file to %HOMEPATH%\nvpy.cfg while referring to nvpy-example.cfg.

  5. Start nvPY by pressing Windows-R and typing nvpy.

To upgrade an existing installation of nvPY, do the following:

py -3 -m pipx upgrade nvpy

On Debian-flavoured systems with apt, current releases of nypy require Python 3.7 or later. If you are running Debian 10, Ubuntu 20.04, or later, which have a compatible release of Python as the default for python3, this generally works:

# Install dependencies and pipx (end-user application manager developed by the Python Packaging Authority).
sudo apt-get install python3 python3-tk python3-pip
python3 -m pip install pipx
# Install nvpy using pipx.
python3 -m pipx install nvpy

Older releases may require manual installation of python 3.7 or later.

Create a file in your home directory called .nvpy.cfg with just the following contents:

[nvpy]
sn_username = your_simplenote_email
sn_password = your_simplenote_password

To start nvpy, just do:

nvpy
# If you get a "command not found" error, try to ~/.local/bin/nvpy

To upgrade an existing installation of nvpy, do the following:

python3 -m pipx upgrade nvpy

nvPY ships with a .desktop file, so that you can easily integrate it with your Linux desktop environment. This has been tested on Ubuntu Unity, but should work on KDE, Gnome3 and other environments as well.

First edit the file to check and optionally customize the Exec and Icon entries, then install it with:

xdg-desktop-menu install vxlabs-nvpy.desktop

Some operating systems will present you with the dependency problems when you install programs using pip without creating a virtual environment.

One solution is to use virtualenvwrapper.

Another way to install it could be with Conda or Miniconda, some distibutions provide conda in their repositories.

This example shows you how to install Conda on Fedora, standard Bash setup - change it if you use other shell. If your distribution provides the conda package, use your package manager (zypper, pacman etc), otherwise follow the official Conda documentation:

sudo dnf install conda
conda init bash
conda install pip
conda create -n nvpy
conda activate nvpy
pip install nvpy

The resulting installation will end up in ~/.conda/envs/nvpy/bin. Now symlink it or create an alias for easier access to nvpy binary.

For example NixOS distribution also provides `Conda < https://nixos.org/nixos/packages.html?query=conda>`_, to install:

nix-env -iA nixos.conda

Then follow the setup above.

You can install nvPY from a git repository.

git clone git://github.com/cpbotha/nvpy.git
cd nvpy
pip3 install -U -e '.[dev]'

Don't forget to create ~/.nvpy.cfg while referring to nvpy-example.cfg.

To start nvpy, just do:

nvpy

To browse nvPY internal docs, just do:

pip3 install -U pdoc3
pdoc --http localhost:8080 nvpy
# Open http://localhost:8080, you can see docs.