According to the koalas docs, installing koalas with conda should be as easy as
conda install koalas
But this raises the error:
Collecting package metadata (repodata.json): done Solving environment: failed with initial frozen solve. Retrying with flexible solve.
PackagesNotFoundError: The following packages are not available from current channels:
- koalas
Current channels:
- https://conda.anaconda.org/anaconda-fusion/win-64
- https://conda.anaconda.org/anaconda-fusion/noarch
- https://repo.anaconda.com/pkgs/main/win-64
- https://repo.anaconda.com/pkgs/main/noarch
- https://repo.anaconda.com/pkgs/r/win-64
- https://repo.anaconda.com/pkgs/r/noarch
- https://repo.anaconda.com/pkgs/msys2/win-64
- https://repo.anaconda.com/pkgs/msys2/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.
I tried running
conda install -c conda-forge pyspark
first too, and that seemd to work out just fine. But koalas
still raises the same error. Is there something more to
Koalas requires PySpark so please make sure your PySpark is available.
than conda install -c conda-forge pyspark
that is too obvious to include in the docs?
I've also tried the whole thing in a virtual environment with
conda create --name koalas-dev-env
if that should matter.
System info:
Python 3.7.0
Anaconda 2019.10
conda install -c conda-forge koalas
? – FlyingTeller