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

How to install geonum via python pip




geonum - Toolbox for 3D geonumerical calculations and atmospheric composition, it belongs to Classifiers:

- Intended Audience :: Education
- Intended Audience :: Science/Research
- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)

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



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_geonum_env

- Active the virtual environment

test_geonum_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_geonum_env

- Active the virtual environment

source test_geonum_env/bin/active


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

To install geonum on Windows(CMD):

py -m pip install geonum

To install geonum on Unix/macOs:

pip install geonum


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

Example:

pip install geonum==1.0.3


Please see the version list below table:

VersionReleased dateCommand
geonum 1.4.52021-02-24T17:17:22Windows:

py -m pip install geonum==1.4.5

Unix/macOs:

pip install geonum==1.4.5

geonum 1.4.42019-10-27T07:12:42Windows:

py -m pip install geonum==1.4.4

Unix/macOs:

pip install geonum==1.4.4

geonum 1.4.32019-05-18T15:06:18Windows:

py -m pip install geonum==1.4.3

Unix/macOs:

pip install geonum==1.4.3

geonum 1.4.22019-05-17T21:46:16Windows:

py -m pip install geonum==1.4.2

Unix/macOs:

pip install geonum==1.4.2

geonum 1.4.12019-05-17T16:22:06Windows:

py -m pip install geonum==1.4.1

Unix/macOs:

pip install geonum==1.4.1

geonum 1.4.02019-04-22T13:11:17Windows:

py -m pip install geonum==1.4.0

Unix/macOs:

pip install geonum==1.4.0

geonum 1.3.22018-11-17T22:39:19Windows:

py -m pip install geonum==1.3.2

Unix/macOs:

pip install geonum==1.3.2

geonum 1.3.12018-09-14T13:18:17Windows:

py -m pip install geonum==1.3.1

Unix/macOs:

pip install geonum==1.3.1

geonum 1.2.22018-05-15T09:51:23Windows:

py -m pip install geonum==1.2.2

Unix/macOs:

pip install geonum==1.2.2

geonum 1.2.02018-01-15T14:57:57Windows:

py -m pip install geonum==1.2.0

Unix/macOs:

pip install geonum==1.2.0

geonum 1.1.12017-04-11T06:51:37Windows:

py -m pip install geonum==1.1.1

Unix/macOs:

pip install geonum==1.1.1

geonum 1.0.32017-02-18T16:53:39Windows:

py -m pip install geonum==1.0.3

Unix/macOs:

pip install geonum==1.0.3


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_geonum_downloaded_file>

On Unix/macOs:

pip install <path_to_geonum_downloaded_file>


List distribution:

- geonum-1.0.3-py2-none-any.whl
- geonum-1.0.3.tar.gz
- geonum-1.1.1-py2-none-any.whl
- geonum-1.1.1.zip
- geonum-1.2.0-py2-none-any.whl
- geonum-1.2.0.tar.gz
- geonum-1.2.2-py2-none-any.whl
- geonum-1.2.2.tar.gz
- geonum-1.3.1-py3-none-any.whl
- geonum-1.3.1.tar.gz
- geonum-1.3.2-py2-none-any.whl
- geonum-1.3.2.tar.gz
- geonum-1.4.0-py2.py3-none-any.whl
- geonum-1.4.0.tar.gz
- geonum-1.4.1-py3-none-any.whl
- geonum-1.4.1.tar.gz
- geonum-1.4.2-py3-none-any.whl
- geonum-1.4.2.tar.gz
- geonum-1.4.3-py3-none-any.whl
- geonum-1.4.3.tar.gz
- geonum-1.4.4-py3-none-any.whl
- geonum-1.4.4.tar.gz
- geonum-1.4.5rc1-py3-none-any.whl
- geonum-1.4.5rc1.tar.gz
- geonum-1.4.5-py3-none-any.whl
- geonum-1.4.5.tar.gz


Project link:

- Homepage