-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
requirements are fixed #1
Comments
I specified the version because I was having problems with older versions of scipy and numpy. The install seemed to work fine for me in the past, but I will try installing it again just to make sure. |
I just successfully installed this: $ mkvirtualenv MinimumBoundingBox
Using base prefix '/Library/Frameworks/Python.framework/Versions/3.6'
New python executable in /Users/williamrusnack/Envs/MinimumBoundingBox/bin/python3.6
Also creating executable in /Users/williamrusnack/Envs/MinimumBoundingBox/bin/python
Installing setuptools, pip, wheel...done.
virtualenvwrapper.user_scripts creating /Users/williamrusnack/Envs/MinimumBoundingBox/bin/predeactivate
virtualenvwrapper.user_scripts creating /Users/williamrusnack/Envs/MinimumBoundingBox/bin/postdeactivate
virtualenvwrapper.user_scripts creating /Users/williamrusnack/Envs/MinimumBoundingBox/bin/preactivate
virtualenvwrapper.user_scripts creating /Users/williamrusnack/Envs/MinimumBoundingBox/bin/postactivate
virtualenvwrapper.user_scripts creating /Users/williamrusnack/Envs/MinimumBoundingBox/bin/get_env_details
(MinimumBoundingBox) $ pip -V
pip 10.0.0 from /Users/williamrusnack/Envs/MinimumBoundingBox/lib/python3.6/site-packages/pip (python 3.6)
(MinimumBoundingBox) $ pip install git+git://github.com/BebeSparkelSparkel/MinimumBoundingBox.git@master
Collecting git+git://github.com/BebeSparkelSparkel/MinimumBoundingBox.git@master
Cloning git://github.com/BebeSparkelSparkel/MinimumBoundingBox.git (to revision master) to /private/var/folders/zj/p9mj9djj3c3b4vjw5yzq1ckr0000gn/T/pip-req-build-cjj1m1s0
Collecting scipy==0.18.1 (from MinimumBoundingBox==0.0.0)
Using cached scipy-0.18.1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Collecting numpy==1.11.2 (from MinimumBoundingBox==0.0.0)
Using cached numpy-1.11.2.tar.gz
Building wheels for collected packages: MinimumBoundingBox, numpy
Running setup.py bdist_wheel for MinimumBoundingBox ... done
Stored in directory: /private/var/folders/zj/p9mj9djj3c3b4vjw5yzq1ckr0000gn/T/pip-ephem-wheel-cache-0junfou7/wheels/b9/40/aa/3cf98bcf1383d8338b656bc1f67c5f42bbaaffe45a66c894d1
Running setup.py bdist_wheel for numpy ... done
Stored in directory: /Users/williamrusnack/Library/Caches/pip/wheels/ac/c6/f8/aea8df35aafc63423770122405e72c6bba1b883762fdc76f17
Successfully built MinimumBoundingBox numpy
Installing collected packages: numpy, scipy, MinimumBoundingBox
Successfully installed MinimumBoundingBox-0.0.0 numpy-1.11.2 scipy-0.18.1 |
Are you using a new environment? |
My existing environment uses newer verions of both packages and I don't want to downgrade or change my |
I would be fine if "==" were changed to ">=". Would you mind ensuring that installs correctly and submitting a PR for that? |
Requirements of your great package are fixed.
install_requires=['scipy==0.18.1', 'numpy==1.11.2']
Is it possible that the installation just requires
scipy
andnumpy
without mentioning the version or usage of greather then symbols?The text was updated successfully, but these errors were encountered: