I've tried
py_install("recordlinkage")
It returns this error :
py_install("recordlinkage") Collecting package metadata: ...working... done Solving environment: ...working... failed
PackagesNotFoundError: The following packages are not available from current channels:
- recordlinkage
Current channels:
- https://conda.anaconda.org/conda-forge/win-64
- https://conda.anaconda.org/conda-forge/noarch
- https://repo.anaconda.com/pkgs/main/win-64
- https://repo.anaconda.com/pkgs/main/noarch
- https://repo.anaconda.com/pkgs/free/win-64
- https://repo.anaconda.com/pkgs/free/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.
So I went to https://anaconda.org and searched recordlinkage and it returned r-recordlinkage
Then I did py_install("r-recordlinkage"), it installed it beautifully. When I do
import r-recordlinkage
in the .py script it says
SyntaxError: invalid syntax (, line 1)
what am I missing here? :/