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

How to install freighter via python pip




freighter - Kai's GameCube modding library enabling C/C++ code injection into .dol executables., it belongs to Classifiers:

- Programming Language :: C
- Programming Language :: C++
- Topic :: Games/Entertainment
- Topic :: Software Development :: Compilers

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



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_freighter_env

- Active the virtual environment

test_freighter_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_freighter_env

- Active the virtual environment

source test_freighter_env/bin/active


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

To install freighter on Windows(CMD):

py -m pip install freighter

To install freighter on Unix/macOs:

pip install freighter


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

Example:

pip install freighter==0.0.1


Please see the version list below table:

VersionReleased dateCommand
freighter 0.2.42021-10-22T19:59:34Windows:

py -m pip install freighter==0.2.4

Unix/macOs:

pip install freighter==0.2.4

freighter 0.2.32021-10-16T03:23:06Windows:

py -m pip install freighter==0.2.3

Unix/macOs:

pip install freighter==0.2.3

freighter 0.2.22021-10-16T03:00:52Windows:

py -m pip install freighter==0.2.2

Unix/macOs:

pip install freighter==0.2.2

freighter 0.2.12021-10-16T02:30:09Windows:

py -m pip install freighter==0.2.1

Unix/macOs:

pip install freighter==0.2.1

freighter 0.1.22021-10-15T22:14:28Windows:

py -m pip install freighter==0.1.2

Unix/macOs:

pip install freighter==0.1.2

freighter 0.1.12021-10-15T08:12:33Windows:

py -m pip install freighter==0.1.1

Unix/macOs:

pip install freighter==0.1.1

freighter 0.0.12021-10-13T19:32:14Windows:

py -m pip install freighter==0.0.1

Unix/macOs:

pip install freighter==0.0.1


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

Download the distribution file from freighter-0.2.4-py3.10.egg or the specific freighter version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_freighter_downloaded_file>

On Unix/macOs:

pip install <path_to_freighter_downloaded_file>


List distribution:

- freighter-0.0.1-py2.py3-none-any.whl (python version >=3.9)
- freighter-0.0.1-py3.9.egg (python version >=3.9)
- freighter-0.0.1.tar.gz (python version >=3.9)
- freighter-0.1.1-py2.py3-none-any.whl (python version >=3.10)
- freighter-0.1.2-py2.py3-none-any.whl (python version >=3.10)
- freighter-0.2.1-py2.py3-none-any.whl (python version >=3.10)
- freighter-0.2.1-py3.10.egg (python version >=3.10)
- freighter-0.2.2-py2.py3-none-any.whl (python version >=3.10)
- freighter-0.2.2-py3.10.egg (python version >=3.10)
- freighter-0.2.3-py2.py3-none-any.whl (python version >=3.10)
- freighter-0.2.3-py3.10.egg (python version >=3.10)
- freighter-0.2.4-py2.py3-none-any.whl (python version >=3.10)
- freighter-0.2.4-py3.10.egg (python version >=3.10)


Project link:

- Homepage
- Issues