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

How to install gui2py via python pip




gui2py - gui2py framework, it belongs to Classifiers:

- Environment :: MacOS X
- Environment :: MacOS X :: Carbon
- Environment :: MacOS X :: Cocoa
- Environment :: Win32 (MS Windows)
- Environment :: X11 Applications
- Environment :: X11 Applications :: GTK
- Intended Audience :: Education
- Intended Audience :: End Users/Desktop
- Intended Audience :: Information Technology
- Intended Audience :: Other Audience
- Intended Audience :: Science/Research
- Intended Audience :: System Administrators
- License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.2
- Programming Language :: Python :: 3.3
- Topic :: Software Development :: User Interfaces

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



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_gui2py_env

- Active the virtual environment

test_gui2py_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_gui2py_env

- Active the virtual environment

source test_gui2py_env/bin/active


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

To install gui2py on Windows(CMD):

py -m pip install gui2py

To install gui2py on Unix/macOs:

pip install gui2py


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

Example:

pip install gui2py==0.9b-py2x                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
gui2py 0.9.6.12016-09-05T21:43:00Windows:

py -m pip install gui2py==0.9.6.1

Unix/macOs:

pip install gui2py==0.9.6.1

gui2py 0.9.62016-08-22T14:11:56Windows:

py -m pip install gui2py==0.9.6

Unix/macOs:

pip install gui2py==0.9.6

gui2py 0.9.52016-08-17T18:16:05Windows:

py -m pip install gui2py==0.9.5

Unix/macOs:

pip install gui2py==0.9.5

gui2py 0.9.42015-07-18T00:18:45Windows:

py -m pip install gui2py==0.9.4

Unix/macOs:

pip install gui2py==0.9.4

gui2py 0.9.3-py2x2013-08-27T05:44:57Windows:

py -m pip install gui2py==0.9.3-py2x

Unix/macOs:

pip install gui2py==0.9.3-py2x


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_gui2py_downloaded_file>

On Unix/macOs:

pip install <path_to_gui2py_downloaded_file>


List distribution:

- gui2py-0.9.3-py2x.tar.gz
- gui2py-0.9a.win-amd64.exe
- gui2py-0.9a.win32.exe
- gui2py-0.9a.zip
- gui2py-0.9.4.tar.gz
- gui2py-0.9.5-py2-none-any.whl
- gui2py-0.9.5-py3-none-any.whl
- gui2py-0.9.6-py2-none-any.whl
- gui2py-0.9.6-py3-none-any.whl
- gui2py-0.9.6.1-py2-none-any.whl
- gui2py-0.9.6.1-py3-none-any.whl
- gui2py-0.9.6.1.tar.gz


Project link:

- Homepage
- Download