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

How to install TSP-Framework via python pip




TSP-Framework - Framework para resolver el problema del vendedor viajero aplicando metodos de busqueda como Simulated Annealing, Genetic Algorithm, Local Search o Iterated Local Search, it belongs to Classifiers:

- License :: Freeware

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



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_TSP-Framework_env

- Active the virtual environment

test_TSP-Framework_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_TSP-Framework_env

- Active the virtual environment

source test_TSP-Framework_env/bin/active


Step 2: OK, now, let flow below content to start the installation TSP-Framework

To install TSP-Framework on Windows(CMD):

py -m pip install TSP-Framework

To install TSP-Framework on Unix/macOs:

pip install TSP-Framework


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

Example:

pip install TSP-Framework==0.71


Please see the version list below table:

VersionReleased dateCommand
TSP-Framework 1.272022-03-07T23:44:26Windows:

py -m pip install TSP-Framework==1.27

Unix/macOs:

pip install TSP-Framework==1.27

TSP-Framework 1.172022-02-26T23:16:00Windows:

py -m pip install TSP-Framework==1.17

Unix/macOs:

pip install TSP-Framework==1.17

TSP-Framework 1.112022-02-20T02:44:08Windows:

py -m pip install TSP-Framework==1.11

Unix/macOs:

pip install TSP-Framework==1.11

TSP-Framework 1.02022-02-15T02:40:50Windows:

py -m pip install TSP-Framework==1.0

Unix/macOs:

pip install TSP-Framework==1.0

TSP-Framework 0.992022-02-11T23:52:40Windows:

py -m pip install TSP-Framework==0.99

Unix/macOs:

pip install TSP-Framework==0.99

TSP-Framework 0.982022-02-08T03:21:13Windows:

py -m pip install TSP-Framework==0.98

Unix/macOs:

pip install TSP-Framework==0.98

TSP-Framework 0.972022-02-03T01:47:17Windows:

py -m pip install TSP-Framework==0.97

Unix/macOs:

pip install TSP-Framework==0.97

TSP-Framework 0.932021-11-16T23:40:08Windows:

py -m pip install TSP-Framework==0.93

Unix/macOs:

pip install TSP-Framework==0.93

TSP-Framework 0.872021-11-09T00:11:53Windows:

py -m pip install TSP-Framework==0.87

Unix/macOs:

pip install TSP-Framework==0.87

TSP-Framework 0.852021-11-05T00:30:12Windows:

py -m pip install TSP-Framework==0.85

Unix/macOs:

pip install TSP-Framework==0.85

TSP-Framework 0.802021-11-04T03:02:39Windows:

py -m pip install TSP-Framework==0.80

Unix/macOs:

pip install TSP-Framework==0.80

TSP-Framework 0.792021-11-04T02:57:48Windows:

py -m pip install TSP-Framework==0.79

Unix/macOs:

pip install TSP-Framework==0.79

TSP-Framework 0.782021-11-04T02:01:20Windows:

py -m pip install TSP-Framework==0.78

Unix/macOs:

pip install TSP-Framework==0.78

TSP-Framework 0.772021-11-04T00:23:08Windows:

py -m pip install TSP-Framework==0.77

Unix/macOs:

pip install TSP-Framework==0.77

TSP-Framework 0.762021-11-03T21:53:57Windows:

py -m pip install TSP-Framework==0.76

Unix/macOs:

pip install TSP-Framework==0.76

TSP-Framework 0.752021-11-03T21:11:37Windows:

py -m pip install TSP-Framework==0.75

Unix/macOs:

pip install TSP-Framework==0.75

TSP-Framework 0.742021-11-03T21:07:22Windows:

py -m pip install TSP-Framework==0.74

Unix/macOs:

pip install TSP-Framework==0.74

TSP-Framework 0.732021-11-03T20:02:53Windows:

py -m pip install TSP-Framework==0.73

Unix/macOs:

pip install TSP-Framework==0.73

TSP-Framework 0.722021-11-03T19:57:50Windows:

py -m pip install TSP-Framework==0.72

Unix/macOs:

pip install TSP-Framework==0.72

TSP-Framework 0.712021-11-03T19:43:31Windows:

py -m pip install TSP-Framework==0.71

Unix/macOs:

pip install TSP-Framework==0.71


Step 4: Otherwise, you can install TSP-Framework from local archives:

Download the distribution file from TSP-Framework-1.27.tar.gz or the specific TSP-Framework version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_TSP-Framework_downloaded_file>

On Unix/macOs:

pip install <path_to_TSP-Framework_downloaded_file>


List distribution:


Project link:

- Homepage