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

How to install simgrid via python pip




simgrid - Toolkit for scalable simulation of distributed applications, it belongs to Classifiers:

- Environment :: Console
- Intended Audience :: Education
- Intended Audience :: Science/Research
- Intended Audience :: System Administrators
- License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)
- Operating System :: MacOS
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Programming Language :: C
- Programming Language :: C++
- Programming Language :: Fortran
- Programming Language :: Java
- Topic :: System
- Topic :: System :: Distributed Computing
- Topic :: System :: Systems Administration

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



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_simgrid_env

- Active the virtual environment

test_simgrid_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_simgrid_env

- Active the virtual environment

source test_simgrid_env/bin/active


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

To install simgrid on Windows(CMD):

py -m pip install simgrid

To install simgrid on Unix/macOs:

pip install simgrid


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

Example:

pip install simgrid==3.22.4


Please see the version list below table:

VersionReleased dateCommand
simgrid 3.312022-03-22T12:38:55Windows:

py -m pip install simgrid==3.31

Unix/macOs:

pip install simgrid==3.31

simgrid 3.302022-01-30T22:34:54Windows:

py -m pip install simgrid==3.30

Unix/macOs:

pip install simgrid==3.30

simgrid 3.292021-10-07T22:10:54Windows:

py -m pip install simgrid==3.29

Unix/macOs:

pip install simgrid==3.29

simgrid 3.282021-07-14T10:28:40Windows:

py -m pip install simgrid==3.28

Unix/macOs:

pip install simgrid==3.28

simgrid 3.272021-03-29T19:38:53Windows:

py -m pip install simgrid==3.27

Unix/macOs:

pip install simgrid==3.27

simgrid 3.262020-12-16T10:52:25Windows:

py -m pip install simgrid==3.26

Unix/macOs:

pip install simgrid==3.26

simgrid 3.25.02020-02-02T15:02:57Windows:

py -m pip install simgrid==3.25.0

Unix/macOs:

pip install simgrid==3.25.0

simgrid 3.242019-10-10T08:42:07Windows:

py -m pip install simgrid==3.24

Unix/macOs:

pip install simgrid==3.24

simgrid 3.23.22019-07-13T22:13:21Windows:

py -m pip install simgrid==3.23.2

Unix/macOs:

pip install simgrid==3.23.2

simgrid 3.232019-06-25T21:10:04Windows:

py -m pip install simgrid==3.23

Unix/macOs:

pip install simgrid==3.23

simgrid 3.22.42019-06-06T14:06:54Windows:

py -m pip install simgrid==3.22.4

Unix/macOs:

pip install simgrid==3.22.4


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_simgrid_downloaded_file>

On Unix/macOs:

pip install <path_to_simgrid_downloaded_file>


List distribution:


Project link:

- Homepage
- Documentation
- Source
- Tracker