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
Yikes! The pip install did not install the additional requirements.
python3 -m venv try-hklpy source try-hklpy/bin/activate python3 -m pip install hklpy pygobject
Originally posted by @prjemian in #212 (comment)
The text was updated successfully, but these errors were encountered:
Can't install libhkl via pip:
ERROR: Could not find a version that satisfies the requirement hkl (from versions: none) ERROR: No matching distribution found for hkl
Sorry, something went wrong.
So, starting with Python 3.9 and libhkl already installed:
conda create -y -n hklpy python=3.9 hkl -c conda-forge conda activate hklpy
Then install by pip
cd hklpy pip install -r requirements.txt pip install -e . --no-deps
and test by creating a simulated 4-circle diffractometer and showing its defaults:
python -c "import hkl; fourc=hkl.SimulatedE4CV('', name='fourc'); fourc.wh()"
ENH #226 add requirements for pip
b8d0363
DOC #226
3f704b8
Let's push a new 1.0.3 release to test these requirements.
prjemian
Successfully merging a pull request may close this issue.
Yikes! The pip install did not install the additional requirements.
python3 -m venv try-hklpy source try-hklpy/bin/activate python3 -m pip install hklpy pygobject
Originally posted by @prjemian in #212 (comment)
The text was updated successfully, but these errors were encountered: