SyMPC icon indicating copy to clipboard operation
SyMPC copied to clipboard

unable to install SyMPC

Open Azhe9510 opened this issue 3 years ago • 3 comments

Question

ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

Further Information

Command “pip install -e .” does not work

Screenshots

System Information

  • OS: [win10]

  • Language Version: Python 3.8

Azhe9510 avatar Aug 10 '21 01:08 Azhe9510

Could you also share the directory from which you run the command?

gmuraru avatar Aug 10 '21 05:08 gmuraru

I created a conda env called " C:\Users\Azhe\Desktop\SyMPC-main\sympc"

Azhe9510 avatar Aug 10 '21 05:08 Azhe9510

Per setup.py

try:
    require("setuptools>=38.3")
except VersionConflict:
    print("Error: version of setuptools is too old (<38.3)!")
    sys.exit(1)

You should try upgrading local version of setuptools with:

pip install --upgrade pip   
pip install --upgrade setuptools

Harkirat155 avatar Nov 20 '21 08:11 Harkirat155