0

I am trying to use Constraint Programming in Python and so I am trying to install the Numberjack standard package from Github. I downloaded the archive but i don't know what to do with it. Someone can help me?

I am using windows

I tried the command that you suggest to me but i got this error

Command "python setup.py egg_info" failed with error code 1 in C:\Users\user\AppData\Local\Temp\pip-install-ixtvck33\Numberjack\

farso92
  • 41
  • 5
  • 1
    go to the command line, type `pip install Numberjack` then it will install Numberjack for your python distribution along with any dependencies the package requires – SPYBUG96 Jan 02 '19 at 20:20
  • 2
    Possible duplicate of [Configuring so that pip install can work from github](https://stackoverflow.com/questions/8247605/configuring-so-that-pip-install-can-work-from-github) – Jack Moody Jan 02 '19 at 20:29
  • 1
    No need to install from GitHub. See https://pypi.org/project/Numberjack/ – iz_ Jan 02 '19 at 20:30
  • when i use that command i have an error: "colud not find xml2-config" – farso92 Jan 03 '19 at 08:45

1 Answers1

0

If you are trying to install by cloning the report, Do the following

git clone

then do the following

cd Numberjack

python setup.py build

python setup.py install
kartheek
  • 690
  • 6
  • 9