https://github.com/TellinaTool/nl2bash
Raw File
Tip revision: 466c5fe873ab08c7cc0112ea1521cc6ad9c20992 authored by Victoria X Lin on 24 December 2020, 00:53:04 UTC
fix README grammar
Tip revision: 466c5fe
Makefile
# This Makefile wraps commands used to set up the learning environment.

setup:
	# Set up nlp tools
	tar xf nlp_tools/spellcheck/most_common.tar.xz --directory nlp_tools/spellcheck/
	
	# Install Python packages
	pip3 install -r requirements.txt
back to top