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

Prepend git cloning and markdown library installation instructions. #5

Merged
merged 1 commit into from Jul 30, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Expand Up @@ -35,11 +35,15 @@ It has a command line interface but can also be used as a plain Python module.
The `html2vimdoc.py` module has several dependencies, the easiest way to
install them is in a [Python virtual environment] [virtualenv]:

# Clone the repository
git clone https://github.com/chivalry/vim-tools.git
cd vim-tools

# Create the virtual environment.
virtualenv html2vimdoc

# Install the dependencies.
html2vimdoc/bin/pip install beautifulsoup coloredlogs
html2vimdoc/bin/pip install beautifulsoup coloredlogs markdown

# Run the program.
html2vimdoc/bin/python ./html2vimdoc.py --help
Expand Down