Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install Yass via python pip




Yass - Yet Another Static Site (generator) for the common folks!, it belongs to Classifiers:

- Environment :: Web Environment
- License :: OSI Approved :: BSD License
- Operating System :: OS Independent
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3.3
- Programming Language :: Python :: 3.4
- Programming Language :: Python :: 3.5
- Topic :: Internet
- Topic :: Internet :: WWW/HTTP
- Topic :: Internet :: WWW/HTTP :: Dynamic Content
- Topic :: Software Development
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: Python Modules

When you know about this project and you want to new install Yass to support your project or you get trouble as ModuleNotFoundError: No module named "Yass" or ImportError: cannot import name "Yass" in your project, let follow this tutorial to install Yass



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_Yass_env

- Active the virtual environment

test_Yass_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_Yass_env

- Active the virtual environment

source test_Yass_env/bin/active


Step 2: OK, now, let flow below content to start the installation Yass

To install Yass on Windows(CMD):

py -m pip install Yass

To install Yass on Unix/macOs:

pip install Yass


Step 3: If you want to install a specific Yass version, add ==<Yass version> to the end command line

Example:

pip install Yass==0.0.1


Please see the version list below table:

VersionReleased dateCommand
Yass 1.2.02017-03-29T10:38:27Windows:

py -m pip install Yass==1.2.0

Unix/macOs:

pip install Yass==1.2.0

Yass 1.0.62017-02-05T07:28:28Windows:

py -m pip install Yass==1.0.6

Unix/macOs:

pip install Yass==1.0.6

Yass 1.0.52017-01-18T06:16:03Windows:

py -m pip install Yass==1.0.5

Unix/macOs:

pip install Yass==1.0.5

Yass 1.0.42017-01-17T09:07:25Windows:

py -m pip install Yass==1.0.4

Unix/macOs:

pip install Yass==1.0.4

Yass 1.0.32017-01-16T21:26:03Windows:

py -m pip install Yass==1.0.3

Unix/macOs:

pip install Yass==1.0.3

Yass 1.0.22017-01-16T21:21:15Windows:

py -m pip install Yass==1.0.2

Unix/macOs:

pip install Yass==1.0.2

Yass 1.0.12017-01-16T08:27:42Windows:

py -m pip install Yass==1.0.1

Unix/macOs:

pip install Yass==1.0.1

Yass 1.0.02017-01-16T07:29:57Windows:

py -m pip install Yass==1.0.0

Unix/macOs:

pip install Yass==1.0.0

Yass 0.0.62016-12-30T08:48:21Windows:

py -m pip install Yass==0.0.6

Unix/macOs:

pip install Yass==0.0.6

Yass 0.0.52016-12-30T08:19:54Windows:

py -m pip install Yass==0.0.5

Unix/macOs:

pip install Yass==0.0.5

Yass 0.0.42016-12-29T06:52:50Windows:

py -m pip install Yass==0.0.4

Unix/macOs:

pip install Yass==0.0.4

Yass 0.0.32016-12-27T05:36:03Windows:

py -m pip install Yass==0.0.3

Unix/macOs:

pip install Yass==0.0.3

Yass 0.0.22016-12-27T01:40:37Windows:

py -m pip install Yass==0.0.2

Unix/macOs:

pip install Yass==0.0.2

Yass 0.0.12016-12-26T20:57:55Windows:

py -m pip install Yass==0.0.1

Unix/macOs:

pip install Yass==0.0.1


Step 4: Otherwise, you can install Yass from local archives:

Download the distribution file from Yass-1.2.0.tar.gz or the specific Yass version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_Yass_downloaded_file>

On Unix/macOs:

pip install <path_to_Yass_downloaded_file>


List distribution:


Project link:

- Homepage