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

How to install huracan via python pip




huracan - Open source, 0-dimensional, object-oriented airbreathing engine modelling package for preliminary analysis and design of airbreathing engines, divulgation and educational purposes., it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 (GPLv3)

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



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_huracan_env

- Active the virtual environment

test_huracan_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_huracan_env

- Active the virtual environment

source test_huracan_env/bin/active


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

To install huracan on Windows(CMD):

py -m pip install huracan

To install huracan on Unix/macOs:

pip install huracan


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

Example:

pip install huracan==0.0a0                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
huracan 0.0.2.post22021-10-14T07:02:06Windows:

py -m pip install huracan==0.0.2.post2

Unix/macOs:

pip install huracan==0.0.2.post2

huracan 0.0.2.post12021-10-14T06:12:32Windows:

py -m pip install huracan==0.0.2.post1

Unix/macOs:

pip install huracan==0.0.2.post1

huracan 0.0.22021-10-12T06:14:18Windows:

py -m pip install huracan==0.0.2

Unix/macOs:

pip install huracan==0.0.2

huracan 0.0.1.post12021-09-11T20:19:17Windows:

py -m pip install huracan==0.0.1.post1

Unix/macOs:

pip install huracan==0.0.1.post1

huracan 0.0.1.post02021-09-11T12:13:03Windows:

py -m pip install huracan==0.0.1.post0

Unix/macOs:

pip install huracan==0.0.1.post0

huracan 0.0.12021-09-10T22:06:01Windows:

py -m pip install huracan==0.0.1

Unix/macOs:

pip install huracan==0.0.1


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

Download the distribution file from huracan-0.0.2.post2.tar.gz or the specific huracan version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_huracan_downloaded_file>

On Unix/macOs:

pip install <path_to_huracan_downloaded_file>


List distribution:

- huracan-0.0a0.tar.gz (python version >=3.8)
- huracan-0.0a1.tar.gz (python version >=3.8)
- huracan-0.0a2.tar.gz (python version >=3.8)
- huracan-0.0.1.tar.gz (python version >=3.8)
- huracan-0.0.1.post0.tar.gz (python version >=3.8)
- huracan-0.0.1.post1.tar.gz (python version >=3.8)
- huracan-0.0.2.tar.gz (python version >=3.8)
- huracan-0.0.2.post1.tar.gz (python version >=3.8)
- huracan-0.0.2.post2.tar.gz (python version >=3.8)


Project link:

- Homepage