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

How to install Soya via python pip




Soya - A practical high-level object-oriented 3D engine for Python., it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License (GPL)
- Topic :: Multimedia :: Graphics

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



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_Soya_env

- Active the virtual environment

test_Soya_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_Soya_env

- Active the virtual environment

source test_Soya_env/bin/active


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

To install Soya on Windows(CMD):

py -m pip install Soya

To install Soya on Unix/macOs:

pip install Soya


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

Example:

pip install Soya==0.6


Please see the version list below table:

VersionReleased dateCommand
Soya 0.162019-01-12T12:11:22Windows:

py -m pip install Soya==0.16

Unix/macOs:

pip install Soya==0.16

Soya 0.11.22006-06-14T00:08:04Windows:

py -m pip install Soya==0.11.2

Unix/macOs:

pip install Soya==0.11.2

Soya 0.10.52006-05-26T22:43:16Windows:

py -m pip install Soya==0.10.5

Unix/macOs:

pip install Soya==0.10.5

Soya 0.102005-07-30T12:11:29Windows:

py -m pip install Soya==0.10

Unix/macOs:

pip install Soya==0.10

Soya 0.92004-12-12T22:54:16Windows:

py -m pip install Soya==0.9

Unix/macOs:

pip install Soya==0.9

Soya 0.8.22004-11-01T12:49:44Windows:

py -m pip install Soya==0.8.2

Unix/macOs:

pip install Soya==0.8.2

Soya 0.62003-12-07T23:02:08Windows:

py -m pip install Soya==0.6

Unix/macOs:

pip install Soya==0.6


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_Soya_downloaded_file>

On Unix/macOs:

pip install <path_to_Soya_downloaded_file>


List distribution:


Project link:

- Homepage