Discussion:
[conda] Minimal miniconda install produces error when pip installing custom script
Xtian Simon
2018-05-06 23:35:30 UTC
Permalink
I have a small (600 lines) custom script which I'm using at work.
I've installed Miniconda3, created a new conda environment, and installed
pandas, click, and git conda packages.

Installing my script in the env,
pip install -e .
I get two error messages:
mkl-random 1.0.1 requires cython, which is not installed.
mkl-fft 1.0.0 requires cython, which is not installed.

My script seems to be working. Any idea what's this about?
--
You received this message because you are subscribed to the Google Groups "conda - Public" group.
To unsubscribe from this group and stop receiving emails from it, send an email to conda+***@continuum.io.
To post to this group, send email to ***@continuum.io.
Visit this group at https://groups.google.com/a/continuum.io/group/conda/.
To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/conda/a9931ce8-1841-415f-b90b-46cf5809257c%40continuum.io.
For more options, visit https://groups.google.com/a/continuum.io/d/optout.
Matt Craig
2018-05-07 01:45:24 UTC
Permalink
Hi,

Looks like you need to conda install cython

Thanks,

Matt
Post by Xtian Simon
I have a small (600 lines) custom script which I'm using at work.
I've installed Miniconda3, created a new conda environment, and installed pandas, click, and git conda packages.
Installing my script in the env,
    > pip install -e .
   mkl-random 1.0.1 requires cython, which is not installed.
   mkl-fft 1.0.0 requires cython, which is not installed.
My script seems to be working. Any idea what's this about?
--
You received this message because you are subscribed to the Google Groups "conda - Public" group.
Visit this group at https://groups.google.com/a/continuum.io/group/conda/.
To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/conda/a9931ce8-1841-415f-b90b-46cf5809257c%40continuum.io.
For more options, visit https://groups.google.com/a/continuum.io/d/optout.
--
You received this message because you are subscribed to the Google Groups "conda - Public" group.
To unsubscribe from this group and stop receiving emails from it, send an email to conda+***@continuum.io.
To post to this group, send email to ***@continuum.io.
Visit this group at https://groups.google.com/a/continuum.io/group/conda/.
To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/conda/4c59c9bc-d710-4392-9842-82f457bc2c88%40Spark.
For more options, visit https://groups.google.com/a/continuum.io/d/optout.
Loading...