SyMPC
SyMPC copied to clipboard
unable to install SyMPC
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
Could you also share the directory from which you run the command?
I created a conda env called " C:\Users\Azhe\Desktop\SyMPC-main\sympc"
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