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
May I have your opinion on installing Slycot using conda after conda build?
Q1: are these two lines equivalent ?
conda install --override-channels -c local slycot
conda install --use-local slycot
Q2 : if Q1 is yes, and the first line above is not working for python=2.7, is a new Pull Request desirable?
If you are interested in how I became to have these questions :
I tried to fork from this repository (7f5dc1c) (again) and triggered Travis-CI. However, the conda install seems unable to install from the local build; you would be able to check my test result here → https://travis-ci.org/autodrive/Slycot/jobs/456615608.
So when I manually followed the commands in .travis.yml for python=2.7 && TEST_CONDA==1.
Solving environment: failed
PackagesNotFoundError: The following packages are not available from current channels:
- slycot
- libgfortran-ng[version='>=7,<8.0a0']
- slycot
- numpy
Current channels:
- file:///home/jonwood/miniconda/conda-bld/linux-64
- file:///home/jonwood/miniconda/conda-bld/noarch
To search for alternate channels that may provide the conda package you're
looking for, navigate to
https://anaconda.org
and use the search bar at the top of the page.
Then I retried the following command: (Q1: is this equivalent to the original intention of 05f3ba1 ?)
conda install --use-local slycot
This time the conda seemingly could install as follows:
I don't think --override-channels -c local and --use-local are equivalent. [1] doesn't document -c local, but it does say that --override-channels means that the "default" channels and .condarc will not be used.
In some quick testing with a Python 2.7 environment, conda install --dry-run --use-local slycot and conda install --dry-run -c local slycot gave the same results.
Dear all,
May I have your opinion on installing Slycot using
conda
afterconda build
?Q1: are these two lines equivalent ?
conda install --override-channels -c local slycot conda install --use-local slycot
Q2 : if Q1 is yes, and the first line above is not working for python=2.7, is a new Pull Request desirable?
If you are interested in how I became to have these questions :
I tried to fork from this repository (7f5dc1c) (again) and triggered Travis-CI. However, the
conda install
seems unable to install from the local build; you would be able to check my test result here → https://travis-ci.org/autodrive/Slycot/jobs/456615608.So when I manually followed the commands in .travis.yml for python=2.7 && TEST_CONDA==1.
The result of the last line was as follows
Then I retried the following command: (Q1: is this equivalent to the original intention of 05f3ba1 ?)
This time the
conda
seemingly could install as follows:To me this seems a little odd because the
conda install
lines work fine for python 3.5 and 3.6.So Q2 : Do you think it would be worth while to prepare a Pull Request?
Good day,
KW
The text was updated successfully, but these errors were encountered: