taicaile / pyproject

A script to set up the development environment for a Python project.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

A script to set up the development environment for a Python project.


Languages

Language:Shell 94.0%Language:Dockerfile 6.0%