I would like to install sagemath on Amazon's EC2. I started a fresh instance of AWS Linux. I installed miniconda using
wget .sh -O ~/miniconda.sh
bash ~/miniconda.sh -b -p $HOME/miniconda
~/miniconda/bin/conda init bash
source ~/.bashrc
I then tried to install sagemath using conda forge based on these instructions: .html
This is the command:
conda config --add channels conda-forge
conda create -n sage sage python=<version>
But then I enter dependency and python version hell. It will say a package does not exist with my python version. I then install a different python version and get a different error. Has anyone solved this maze?