Giter VIP home page Giter VIP logo

tv3's Introduction

Terminal Velocity 3

Terminal Velocity 3 is a TUI application for managing plain-text notes. It combines finding and creating notes in a single minimal interface and delegates the note-taking itself to your $EDITOR.

Terminal Velocity 3 Screencast

The interface concept is taken from Notational Velocity.

This is an active fork of terminal-velocity-notes/terminal_velocity and a port from Legacy Python to Python 3.

Installation

User site installation

This installs to ~/.local/. It doesn't need root privileges and keeps your system-wide Python installation clean. If you want to install system-wide, drop the --user flag and prepend sudo -H to pip3.

git clone https://github.com/aramiscd/tv3
cd tv3
pip3 install --user .
cd ..
rm -rf tv3

Installation in a Python virtual environment

The code currently depends on Urwid version 1.1.1 and isn't (yet) fully compatible with more recent versions. If you have other stuff depending on a more recent Urwid in the same Python environment, you will get a dependency conflict, because Python doesn't support multiple versions of a package in the same environment.

The solution is to install TV3 in its own virtual Python environment and symlink it to ~/.local/bin/ (or any other directory in your $PATH). If you are a pythonista and familiar with the command line you probably know how to do this. Otherwise just follow these instructions.

bash
sudo -H pip3 install virtualenv
git clone https://github.com/aramiscd/tv3 ~/.tv3
cd ~/.tv3
virtualenv -p python3 env
env/bin/activate
pip3 install .
deactivate
mkdir -p ~/.local/bin/
ln -s ~/.tv3/env/bin/tv3 ~/.local/bin/
exit

tv3's People

Contributors

vhp avatar seanh avatar aramiscd avatar brightghost avatar abhinav avatar immae avatar jmtscaff avatar knodalyte avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.