Ask Your Question

isuruf's profile - activity

2021-08-23 15:08:17 +0200 commented question PackageNotFoundError: cblas not found

Can you try doing, conda install blas-devel ?

2021-08-23 15:08:06 +0200 commented question PackageNotFoundError: cblas not found

Can you doing, conda install blas-devel

2021-08-23 15:07:41 +0200 commented question PackageNotFoundError: cblas not found

What do you get with conda list -n sage? Do you have a file at /Users/*****/opt/anaconda3/envs/sage/lib/pkgconfig/cblas.

2020-11-13 22:13:12 +0200 received badge  Necromancer (source)
2020-11-12 22:34:49 +0200 answered a question texshop conda

You shouldn't directly call sage using the sage executable.

Instead of

 /opt/anaconda3/envs/sage/bin/sage "$sagename"

try,

conda activate /opt/anaconda3/envs/sage
sage "$sagename"
2020-11-12 22:30:44 +0200 answered a question Sage 9.2 on macOS 10.15.7 not working with conda method, either

You need to run sage in the same terminal that you ran conda activate sage

conda activate sage
sage
2020-10-20 15:57:12 +0200 received badge  Nice Answer (source)
2020-06-15 04:23:58 +0200 answered a question installing from conda-forge

We don't have the docs built for the sage package in conda-forge yet. Help is welcome on this.

2019-08-08 17:24:44 +0200 commented question sagetex with conda install

You can install it using conda install sagetex -c conda-forge.

2019-08-06 15:32:32 +0200 answered a question sagetex with conda install

Yes, it's not installed when sage is installed using conda. I'll package it soon.

2019-08-06 15:17:44 +0200 commented answer Install optional packages (eg extra Jupyter kernels) on top of conda-installed SageMath

They are all available in conda-forge now.

$ conda install gap -c conda-forge

$ conda install pari_jupyter -c conda-forge

$ conda install r-irkernel -c conda-forge

$ conda install jupyter-kernel-singular -c conda-forge

2018-10-17 12:32:46 +0200 received badge  Teacher (source)
2018-10-15 20:48:31 +0200 answered a question Install optional packages (eg extra Jupyter kernels) on top of conda-installed SageMath

For the R kernel, you can do conda install r-irkernel -c conda-forge

For the others, we'd like to have conda packages. Let me know if you are interested in supporting them.

Pari kernel can be installed using pip. You can do CPATH=$CONDA_PREFIX/include pip install pari_jupyter Singular kernel can be installed using pip. You can do CPATH=$CONDA_PREFIX/include pip install PySingular jupyter-kernel-singular

2016-01-19 12:04:47 +0200 commented question Why 5.000000000000000 is not equal to 5

Did you mean 1e-10 instead of 1*e-10?