We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There seem to be breaking changes to the setup process.
Tried using conda and pip instructions as well as setup.py method
conda
pip
setup.py
The latest setup.py file itself seems to have breaking changes? (examples below)
OS: Windows 11 Branch: feature/vectorize_only_apps (it may affect all others - have not tested)
Created new conda environment for ramp using: conda create -n ramp python=3.8
conda create -n ramp python=3.8
Activated environment with: conda activate ramp
conda activate ramp
Attempted to install using pip with: pip install rampdemand
pip install rampdemand
Gives the following errors:
#Attempt using direct setup.py method:
Downloaded and unzipped source code to known folder and use command: python setup.py
python setup.py
Gives the following consistent error as above:
If in setup.py I comment out BOTH lines 10 AND 16 as below:
... #long_description = open("README.rst").read(), ... #python_requires = ">.3.6.0", ...
#long_description = open("README.rst").read(),
#python_requires = ">.3.6.0",
Then setup works using pip install -e .
pip install -e .
ALSO: pip install tdqm and pip install configuration were required for ramp to function. Perhaps add to the requirements list.
pip install tdqm
pip install configuration
The normal python setup.py still fails with the following:
The text was updated successfully, but these errors were encountered:
Bachibouzouk
GregoryIreland
No branches or pull requests
There seem to be breaking changes to the setup process.
Tried using
conda
andpip
instructions as well assetup.py
methodThe latest setup.py file itself seems to have breaking changes? (examples below)
OS: Windows 11
Branch: feature/vectorize_only_apps (it may affect all others - have not tested)
Process and commands executed:
Conda + pip installation attempt:
Created new conda environment for ramp using:
conda create -n ramp python=3.8
Activated environment with:
conda activate ramp
Attempted to install using pip with:
pip install rampdemand
Gives the following errors:
#Attempt using direct
setup.py
method:Downloaded and unzipped source code to known folder and use command:
python setup.py
Gives the following consistent error as above:
TEMPORARY FIX
If in
setup.py
I comment out BOTH lines 10 AND 16 as below:...
#long_description = open("README.rst").read(),
...
#python_requires = ">.3.6.0",
...
Then setup works using
pip install -e .
ALSO:
pip install tdqm
andpip install configuration
were required for ramp to function.Perhaps add to the requirements list.
The normal
python setup.py
still fails with the following:The text was updated successfully, but these errors were encountered: