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

How to install Planetmint via python pip




Planetmint - Planetmint: The Blockchain Database, it belongs to Classifiers:

- Operating System :: MacOS :: MacOS X
- Topic :: Database
- Topic :: Database :: Database Engines/Servers

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



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_Planetmint_env

- Active the virtual environment

test_Planetmint_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_Planetmint_env

- Active the virtual environment

source test_Planetmint_env/bin/active


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

To install Planetmint on Windows(CMD):

py -m pip install Planetmint

To install Planetmint on Unix/macOs:

pip install Planetmint


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

Example:

pip install Planetmint==0.9.0


Please see the version list below table:

VersionReleased dateCommand
Planetmint 1.0.12022-07-07T11:12:46Windows:

py -m pip install Planetmint==1.0.1

Unix/macOs:

pip install Planetmint==1.0.1

Planetmint 1.0.02022-07-05T13:45:25Windows:

py -m pip install Planetmint==1.0.0

Unix/macOs:

pip install Planetmint==1.0.0

Planetmint 0.9.72022-06-17T08:33:01Windows:

py -m pip install Planetmint==0.9.7

Unix/macOs:

pip install Planetmint==0.9.7

Planetmint 0.9.62022-06-16T19:51:02Windows:

py -m pip install Planetmint==0.9.6

Unix/macOs:

pip install Planetmint==0.9.6

Planetmint 0.9.52022-06-15T13:12:26Windows:

py -m pip install Planetmint==0.9.5

Unix/macOs:

pip install Planetmint==0.9.5

Planetmint 0.9.42022-05-16T21:12:39Windows:

py -m pip install Planetmint==0.9.4

Unix/macOs:

pip install Planetmint==0.9.4

Planetmint 0.9.32022-05-16T15:16:30Windows:

py -m pip install Planetmint==0.9.3

Unix/macOs:

pip install Planetmint==0.9.3

Planetmint 0.9.22022-04-27T14:42:59Windows:

py -m pip install Planetmint==0.9.2

Unix/macOs:

pip install Planetmint==0.9.2

Planetmint 0.9.02022-01-31T15:12:21Windows:

py -m pip install Planetmint==0.9.0

Unix/macOs:

pip install Planetmint==0.9.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_Planetmint_downloaded_file>

On Unix/macOs:

pip install <path_to_Planetmint_downloaded_file>


List distribution:


Project link:

- Homepage