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

How to install khartoum via python pip




khartoum - A simple app for http serving of static files from MongoDB's GridFS filesystem., it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- License :: OSI Approved :: MIT License

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



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_khartoum_env

- Active the virtual environment

test_khartoum_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_khartoum_env

- Active the virtual environment

source test_khartoum_env/bin/active


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

To install khartoum on Windows(CMD):

py -m pip install khartoum

To install khartoum on Unix/macOs:

pip install khartoum


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

Example:

pip install khartoum==0.3.0


Please see the version list below table:

VersionReleased dateCommand
khartoum 2.1.12018-11-14T19:22:08Windows:

py -m pip install khartoum==2.1.1

Unix/macOs:

pip install khartoum==2.1.1

khartoum 2.1.02018-10-30T20:56:06Windows:

py -m pip install khartoum==2.1.0

Unix/macOs:

pip install khartoum==2.1.0

khartoum 2.0.02018-10-30T19:22:13Windows:

py -m pip install khartoum==2.0.0

Unix/macOs:

pip install khartoum==2.0.0

khartoum 1.2.12018-10-30T20:11:08Windows:

py -m pip install khartoum==1.2.1

Unix/macOs:

pip install khartoum==1.2.1

khartoum 1.2.02018-10-30T19:03:39Windows:

py -m pip install khartoum==1.2.0

Unix/macOs:

pip install khartoum==1.2.0

khartoum 1.1.02018-10-30T18:42:06Windows:

py -m pip install khartoum==1.1.0

Unix/macOs:

pip install khartoum==1.1.0

khartoum 0.3.32013-10-16T23:37:05Windows:

py -m pip install khartoum==0.3.3

Unix/macOs:

pip install khartoum==0.3.3

khartoum 0.3.22013-08-17T23:49:10Windows:

py -m pip install khartoum==0.3.2

Unix/macOs:

pip install khartoum==0.3.2

khartoum 0.3.12013-08-16T17:56:16Windows:

py -m pip install khartoum==0.3.1

Unix/macOs:

pip install khartoum==0.3.1

khartoum 0.3.02013-08-15T23:59:02Windows:

py -m pip install khartoum==0.3.0

Unix/macOs:

pip install khartoum==0.3.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_khartoum_downloaded_file>

On Unix/macOs:

pip install <path_to_khartoum_downloaded_file>


List distribution:

- khartoum-0.3.0.tar.gz
- khartoum-0.3.1.tar.gz
- khartoum-0.3.2.tar.gz
- khartoum-0.3.3.tar.gz
- khartoum-1.1.0-py2.py3-none-any.whl (python version >=2.7)
- khartoum-1.1.0.tar.gz (python version >=2.7)
- khartoum-1.2.0-py2.py3-none-any.whl (python version >=2.7)
- khartoum-1.2.0.tar.gz (python version >=2.7)
- khartoum-1.2.1-py2.py3-none-any.whl (python version >=2.7)
- khartoum-1.2.1.tar.gz (python version >=2.7)
- khartoum-2.0.0-py2.py3-none-any.whl (python version >=3.6)
- khartoum-2.0.0.tar.gz (python version >=3.6)
- khartoum-2.1.0-py2.py3-none-any.whl (python version >=3.6)
- khartoum-2.1.0.tar.gz (python version >=3.6)
- khartoum-2.1.1-py2.py3-none-any.whl (python version >=3.6)
- khartoum-2.1.1.tar.gz (python version >=3.6)


Project link:

- Homepage