You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Summit team!
I am trying to install the package through pip and cannot get it to work.
Operating System:
Windows 10 (10.0.18363)
Python version:
Python 3.7.10 through anaconda
summit version used:
current summit version on pypi (0.6.0). Made sure that no pip cache dir was used to reproduce a clean installation.
Description
I want to use summit for some benchmarking. My intention is to emulate the experiments you provide to test my optimization package and ideally compare that to the strategies you implemented. I would appreciate some help with the installation!
When installing it, gryffin produces an error which makes the installation fail: pip install summit --no-cache-dir
WARNING: Discarding https://files.pythonhosted.org/packages/04/f5/72388bf9ae2289f6c6c6c464243a5fb2ebd0d235e897bf144e1c6c0abcba/gryffin-0.1.1.tar.gz#sha256=ef44cf79616e078406c5ba5cedfc95d1919673fc0f8f13abb18ea3567c06e47d (from https://pypi.org/simple/gryffin/) (requires-python:>=3.6). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
It then tries to find a previous version of summit and it fails again:
ERROR: Could not find a version that satisfies the requirement gryffin<0.2.0,>=0.1.1 (from summit)
ERROR: No matching distribution found for gryffin<0.2.0,>=0.1.1
ERROR: Cannot install summit and summit==0.6.0 because these package versions have conflicting dependencies.
The conflict is caused by:
summit 0.6.0 depends on torch<2.0.0 and >=1.4.0
blitz-bayesian-pytorch 0.2.3 depends on torch==1.4.0
To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip attempt to solve the dependency conflict
I read Issue #71 again and resoved the problem by building from git instead. Sorry for any inconveniences! Here is the command which successfully built the package: pip install git+https://github.com/sustainable-processes/[email protected]#egg=summit --no-cache-dir
Hi Summit team!
I am trying to install the package through pip and cannot get it to work.
Windows 10 (10.0.18363)
Python 3.7.10 through anaconda
current summit version on pypi (0.6.0). Made sure that no pip cache dir was used to reproduce a clean installation.
Description
I want to use summit for some benchmarking. My intention is to emulate the experiments you provide to test my optimization package and ideally compare that to the strategies you implemented. I would appreciate some help with the installation!
When installing it, gryffin produces an error which makes the installation fail:
pip install summit --no-cache-dir
It then tries to find a previous version of summit and it fails again:
Tried to install the "stopgap" branch of issue #71 and could also not get it to work with
'''pip install git+https://github.com/sustainable-processes/summit.git@stopgap#egg=summit --no-cache-dir'''
which produces:
I tried to force torch==1.4.0 through the command above with
'''pip install git+https://github.com/sustainable-processes/summit.git@stopgap#egg=summit --no-cache-dir torch==1.4.0"
'''
Which produces
What I Did
I set up a new environment for summit with "conda install python=3.7"
then activated it and ran "pip install summit".
The text was updated successfully, but these errors were encountered: