README
This repo is used to initialize an environment for Python project.
Usage
To initialize a virtual environment for a Python project development,
curl -sL https://raw.githubusercontent.com/taicaile/pyproject/master/setup.sh | bash
To create a virtual environment for having a glance at a Python project,
curl -sL https://raw.githubusercontent.com/taicaile/pyproject/master/view.sh | bash
To install Python3 on Ubuntu system,
# install the default python3
curl -sL https://raw.githubusercontent.com/taicaile/pyproject/master/python3.sh | sudo bash
# specify the python3 version
curl -sL https://raw.githubusercontent.com/taicaile/pyproject/master/python3.sh | sudo bash -s -- 3.8
To install markdownlint
:
First, install the npm
LTS version via nvm
,
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
nvm install --lts
nvm use --lts
Then, install the required package,
npm install -g markdownlint-cli