Search code examples
pythonwindowscondacupycusignal

Installing cusignal on windows 10


I wanted to install the cusignal python package on windows and I was following the instructions on the following github link.

It says to run the following commands:

conda create --name cusignal-dev

conda activate cusignal-dev

conda install numpy numba scipy cudatoolkit pip
pip install cupy-cuda101

cd python
python setup.py install

But towards the last two lines, I have no idea what and where the setup.py file is located. There is also no such folder called python that is automatically created. Hence, I am unsure how I am supposed to install cusignal library on windows 10.


Solution

  • The instructions expect that you first clone the GitHub repository, which has such a python folder, then run those instructions, like

    git clone https://github.com/rapidsai/cusignal.git
    cd python
    python setup.py install
    

    Be sure your environment is activated when doing this.